Vim NERDTree:仅显示 .txt 文件?

发布于 2024-11-17 03:05:10 字数 205 浏览 3 评论 0原文

使用 NERDTree 插件,我只想查看 *.txt 文件。有一个 NERDTreeIgnore 变量,但我想要类似 NERDTreeWhitelistFilter 的变量。

有没有办法将我看到的内容列入白名单?

Using NERDTree plugin, I want to view only *.txt files. There is a NERDTreeIgnore variable, but I want something like NERDTreeWhitelistFilter.

Is there a way to whitelist what I see?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

从来不烧饼 2024-11-24 03:05:10

我一直在研究这个问题——这是一个有趣的问题。也许你可以尝试这个正则表达式来忽略文件?

编辑:和我的同事交谈。这是正确的正则表达式(我原来的正则表达式也与文件名开头的“txt”匹配)。

^(?!.*\.txt$).*

I've been playing around with this — it's an interesting problem. Maybe you could try out this regular expression for ignoring files?

Edit: talked with my co-worker. Here's the correct regular expression (my original one matched "txt" at the beginning of a file name, too).

^(?!.*\.txt$).*
披肩女神 2024-11-24 03:05:10

这就是你想要的:

:let NERDTreeIgnore += ['\(\.txt\)\@<!$[[file]]']

This is what you want:

:let NERDTreeIgnore += ['\(\.txt\)\@<!$[[file]]']
离不开的别离 2024-11-24 03:05:10

基于 @kev 很好的答案,您还可以制作切换功能。


function NERDRefreshIfOpened()
    if g:NERDTree.IsOpen()
            :NERDTreeRefreshRoot
    endif
endfunction

function NERDTxtOnlyToggle()
    let regex='\(\.txt\)\@<!$[[file]]'
    if index(g:NERDTreeIgnore, regex) >= 0
        call filter(g:NERDTreeIgnore, {idx, val -> val != regex})
        call NERDRefreshIfOpened()
    else
        let g:NERDTreeIgnore += [regex]
        call NERDRefreshIfOpened()
    endif
endfunction

based on @kev great answer you can also make a toggle function.


function NERDRefreshIfOpened()
    if g:NERDTree.IsOpen()
            :NERDTreeRefreshRoot
    endif
endfunction

function NERDTxtOnlyToggle()
    let regex='\(\.txt\)\@<!$[[file]]'
    if index(g:NERDTreeIgnore, regex) >= 0
        call filter(g:NERDTreeIgnore, {idx, val -> val != regex})
        call NERDRefreshIfOpened()
    else
        let g:NERDTreeIgnore += [regex]
        call NERDRefreshIfOpened()
    endif
endfunction
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文