gpt4 book ai didi

vim - 如何让vim的vimgrep命令保持缩进?

转载 作者:行者123 更新时间:2023-12-04 21:56:19 26 4
gpt4 key购买 nike

我正在尝试使用 vim 的快速修复(或本地)列表来获取从文件中提取的一些信息。例如,我想获取一个python模块的所有方法名(这个想法是从pycharm借来的)。我想在 vim 的“本地列表”中获取的内容类似于以下内容:

class Foo:
def one():
def two():
def three():
def bar():
def bazz():

为此,我大约执行以下步骤:
:" OK, the current buffer is being used.
:let file_name = expand('%:p')

:" The heart of the process is one of vim’s grep-like command.
:execute 'lvimgrep /\v^\s*(class|def)/ '.file_name

:" I open the results with the “lopen” command because “llist”
:" doesn’t allow me to use concealing.
:lopen

:" Since I’m working with one file, I don’t need information
:" about file name, line number etc.
:setlocal conceallevel=3
:syntax match NonText /\v^.+col \d+([:]|[|])/ transparent conceal
:" Please note, I‘m still able to jump to a line
:" with the “ll” command.

但不幸的是我得到:
class Foo:
def one():
def two():
def three():
def bar():
def bazz():

所有的凹痕都被吞没了!结果相当没用……我分不清哪些函数属于一个类,哪些是独立的。

请注意,隐藏对结果没有有意义的影响。如果我删除了最后两个命令(与隐藏相关),则不会有任何重大变化,只会显示文件名和行/列号,但行中的文本仍然没有缩进。

所以,我的问题是:

是否可以制作 lvimgrep (或类似物)保持线条不变以节省缩进?有没有神奇的命令或选项可以做到这一点?或者我应该编写自己的 lvimgrep 实现吗? ?

附言我想使用 vim 的正则表达式。但如果不可能,我可以切换到外部的“grep”命令(我是 linux 人)并使用 BRE 或 ERE 语法。

最佳答案

不,目前是不可能的制作 lvimgrep (甚至类似的命令)在快速修复(位置)列表条目中保留前导空白字符,因为空格和制表符是 unconditionally skipped从头开始,如果文本长度大于 3 .

实现所需行为的唯一方法(至少,使用 *vimgrep 命令)是 修改源代码 .例如,您可以添加一个选项,如下面的补丁所示:

diff --git a/runtime/optwin.vim b/runtime/optwin.vim                                                                                                                                                                            
index 7d3a8804d..caac55cf2 100644
--- a/runtime/optwin.vim
+++ b/runtime/optwin.vim
@@ -1299,6 +1299,7 @@ call <SID>OptionG("ve", &ve)
call append("$", "eventignore\tlist of autocommand events which are to be ignored")
call <SID>OptionG("ei", &ei)
call append("$", "loadplugins\tload plugin scripts when starting up")
+call append("$", "locws\tenables whitespace characters for entries in the location window")
call <SID>BinOptionG("lpl", &lpl)
call append("$", "exrc\tenable reading .vimrc/.exrc/.gvimrc in the current directory")
call <SID>BinOptionG("ex", &ex)
diff --git a/src/option.c b/src/option.c
index aabfc7f53..4ba280806 100644
--- a/src/option.c
+++ b/src/option.c
@@ -1791,6 +1791,9 @@ static struct vimoption options[] =
{"loadplugins", "lpl", P_BOOL|P_VI_DEF,
(char_u *)&p_lpl, PV_NONE,
{(char_u *)TRUE, (char_u *)0L} SCTX_INIT},
+ {"locws", NULL, P_BOOL|P_VI_DEF,
+ (char_u *)&p_locws, PV_NONE,
+ {(char_u *)FALSE, (char_u *)0L} SCTX_INIT},
{"luadll", NULL, P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
#if defined(DYNAMIC_LUA)
(char_u *)&p_luadll, PV_NONE,
diff --git a/src/option.h b/src/option.h
index c1a25b342..5e17c459e 100644
--- a/src/option.h
+++ b/src/option.h
@@ -602,6 +602,7 @@ EXTERN char_u *p_lcs; // 'listchars'

EXTERN int p_lz; // 'lazyredraw'
EXTERN int p_lpl; // 'loadplugins'
+EXTERN int p_locws; // 'locws'
#if defined(DYNAMIC_LUA)
EXTERN char_u *p_luadll; // 'luadll'
#endif
diff --git a/src/quickfix.c b/src/quickfix.c
index 136c472e1..8e206ddd7 100644
--- a/src/quickfix.c
+++ b/src/quickfix.c
@@ -4417,8 +4417,9 @@ qf_update_buffer(qf_info_T *qi, qfline_T *old_last)
static int
qf_buf_add_line(buf_T *buf, linenr_T lnum, qfline_T *qfp, char_u *dirname)
{
- int len;
- buf_T *errbuf;
+ int len;
+ buf_T *errbuf;
+ long lval;

if (qfp->qf_module != NULL)
{
@@ -4472,10 +4473,12 @@ qf_buf_add_line(buf_T *buf, linenr_T lnum, qfline_T *qfp, char_u *dirname)
IObuff[len++] = '|';
IObuff[len++] = ' ';

- // Remove newlines and leading whitespace from the text.
+ // Remove newlines and leading whitespace from the text,
+ // if the user not enabled whitespaces explicitly via locws option.
// For an unrecognized line keep the indent, the compiler may
// mark a word with ^^^^.
- qf_fmt_text(len > 3 ? skipwhite(qfp->qf_text) : qfp->qf_text,
+ get_option_value((char_u *)"locws", &lval, NULL, 0);
+ qf_fmt_text(len > 3 ? (lval ? qfp->qf_text : skipwhite(qfp->qf_text)) : qfp->qf_text,
IObuff + len, IOSIZE - len);

if (ml_append_buf(buf, lnum, IObuff,

locws选项,您可以在 quickfix/location 条目中启用空白字符,如下所示:

:set locws

关于vim - 如何让vim的vimgrep命令保持缩进?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57854158/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com