可能重複:
gVim displays every file with an asterisk on the right (and bold)?VIM nerdtree文件顯示了*附加
我使用的是nerdtree插件VIM我軌項目和一些文件顯示了一個*
追加到文件名。它們也是與其他文件不同的顏色。
edit.html.erb*
index.html.erb
show.html.erb*
*
是什麼意思?
可能重複:
gVim displays every file with an asterisk on the right (and bold)?VIM nerdtree文件顯示了*附加
我使用的是nerdtree插件VIM我軌項目和一些文件顯示了一個*
追加到文件名。它們也是與其他文件不同的顏色。
edit.html.erb*
index.html.erb
show.html.erb*
*
是什麼意思?
關鍵是可執行位。例如,如果你這樣做:
$touch no_exec_file exec_file
$chmod -v u+x exec_file
$ls -lF
total 0
-rwxr--r-- 1 reoo reoo 0 2012-09-19 19:14 exec_file*
-rw-r--r-- 1 reoo reoo 0 2012-09-19 19:14 no_exec_file
你可以看到在exec_file「*」,現在,如果你打開VIM,您可以再次在exec_file看到的「*」符號。
因此,NERDTree插件顯示可以由用戶執行的文件的'*'符號。
這意味着你的文件是可執行的,這意味着你給他們的權限是可執行的。或者他們是像.exe這樣的文件。