You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 12, 2022. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+13Lines changed: 13 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -156,11 +156,24 @@ alias palette='for i in {0..255}; do echo -e "\e[38;05;${i}m${i}"; done | column
156
156
```
157
157
158
158
159
+
### Writing plugin for vim-netranger
160
+
vim-netranger will expose some api so that users can write (python) code to customize the appearance of vim-netranger. An example plugin is [netranger-diricon](https://github.com/ipod825/netranger-diricon), which shows a small icon indicating whether a directory is expanded or not. Generally, in you `plugin/YOURPLUGIN.vim` file, you'll have the following boilplate code:
Your registered function name must be a valid vim-netranger api.
168
+
169
+
159
170
## Known Issues
160
171
1. In neovim, when opening two vim buffers for the same directory, there is a delay for moving cursor up and down. This seems to be an nvim api [issue](https://github.com/neovim/neovim/issues/7756)
161
172
2. When remote directory is empty, it will not be copied to remote. It is an rclone [bug] (https://github.com/ncw/rclone/issues/1837), which is expected to be fixed in next release.
162
173
163
174
175
+
176
+
164
177
## Contributing
165
178
Pull request is welcomed. However, please run tests and coding style check before sending pull request.
0 commit comments