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
Copy file name to clipboardexpand all lines: README.markdown
+22
Original file line number
Diff line number
Diff line change
@@ -188,6 +188,28 @@ let g:NERDTreeDirArrowCollapsible = '?'
188
188
```
189
189
The preceding values are the non-Windows default arrow symbols. Setting these variables to empty strings will remove the arrows completely and shift the entire tree two character positions to the left. See `:h NERDTreeDirArrowExpandable`for more details.
190
190
191
+
### How can I show lines of files?
192
+
193
+
```vim
194
+
let g:NERDTreeFileLines = 1
195
+
```
196
+
197
+
Lines in the file are displayed as shown below.
198
+
```
199
+
</pack/packer/start/nerdtree/
200
+
▸ autoload/
201
+
▸ doc/
202
+
▸ lib/
203
+
▸ nerdtree_plugin/
204
+
▸ plugin/
205
+
▸ syntax/
206
+
_config.yml (1)
207
+
CHANGELOG.md (307)
208
+
LICENCE (13)
209
+
README.markdown (234)
210
+
screenshot.png (219)
211
+
```
212
+
191
213
### Can NERDTree access remote files via scp or ftp?
192
214
193
215
Short answer: No, and there are no plans to add that functionality. However, Vim ships with a plugin that does just that. It's called netrw, and by adding the following lines to your `.vimrc`, you can use it to open files over the `scp:`, `ftp:`, or other protocols, while still using NERDTree for all local files. The function seamlessly makes the decision to open NERDTree or netrw, and other supported protocols can be added to the regular expression.
0 commit comments