gpt4 book ai didi

python - 在 vim 中编辑 python 文件的更高效的 Action

转载 作者:IT老高 更新时间:2023-10-28 20:32:10 32 4
gpt4 key购买 nike

给定一个 python 文件,其内容不断重复:

def myFunction(a, b, c):
if a:
print b
elif c:
print 'hello'

我想四处走动并使用熟悉的 vim Action 编辑此文件。例如,使用 (, ), [[, ]], {, } 或使用 di} 之类的命令删除/拉取/更改文本。

在其他语言(如 C++、Java、C# 等)中,花括号比比皆是,因此使用 di} 之类的 Action 可以轻松找到匹配的花括号并作用于该 block 。事实上,如果我在上述文本的 'b' 字符上并在 vim 中执行 di),它会成功删除两个括号之间的文本。

我认为问题在于 python 对代码块的检测。使用 (, ), [[, ]], {, or } 作为 Action 几乎都做同样的事情,带你到开始(在 def 行之上或之上)或结束(在函数的最后一行之后)功能。据我所知,没有办法轻松地告诉 vim“选择这个缩进 block 的所有内容”。在上面的例子中,我想在 if 行的 'i' 中,输入 di} 并让它删除整个 if block (到这个特定函数的末尾)。

我确信应该可以告诉 vim 在缩进的基础上进行这样的 Action (嗯,也许不是那个特定的 Action ,而是一些用户定义的 Action )。关于如何实现这一点的任何想法?

最佳答案

方括号映射[[, ]], [m, ]m 和类似的

$VIMRUNTIME/ftplugin/python.vim now (2018) 重新映射了 Python 语言的 :h ]]:h ]m 下记录的所有内置映射。映射是:

]] Jump forward to begin of next toplevel
[[ Jump backwards to begin of current toplevel (if already there, previous toplevel)
]m Jump forward to begin of next method/scope
[m Jump backwords to begin of previous method/scope

][ Jump forward to end of current toplevel
[] Jump backward to end of previous of toplevel
]M Jump forward to end of current method/scope
[M Jump backward to end of previous method/scope

以下带有注释的示例源代码说明了不同的映射

class Mapping:                              # [[[[
def __init__(self, iterable):
pass

def update(self, iterable):
pass

__update = update # []

class Reverse: # [[ or [m[m
def __init__(self, data): # [m
self.data = data
self.index = len(data) # [M

def __iter__(self): # <--- CURSOR
return self # ]M

def __next__(self): # ]m
if self.index == 0:
raise StopIteration
self.index = self.index - 1
return self.data[self.index] # ][

class MappingSubclass(Mapping): # ]] or ]m]m

def update(self, keys, values):
pass

在提交中添加和改进了映射 abd468ed0 (2016-09-08), 01164a6546b4 (2017-11-02) 和 7f2e9d7c9cd (2017-11-11).

如果你还没有这个文件的新版本,你可以下载并放入~/.vim/ftplugin/python.vim。此文件夹优先于 $VIMRUNTIME/ftplugin

在将这些映射添加到 $VIMRUNTIME 之前,已经有插件 python-mode 提供 [[, ]][M]M。另外python-mode还定义了文本对象aCiCaMiM:

插件 python-mode

这个 vim 插件提供类似于内置的 Action :

2.4 Vim motion ~
*pymode-motion*

Support Vim motion (See |operator|) for python objects (such as functions,
class and methods).

`C` — means class
`M` — means method or function
*pymode-motion-keys*

========== ============================
Key Command (modes)
========== ============================
[[ Jump to previous class or function (normal, visual, operator)
]] Jump to next class or function (normal, visual, operator)
[M Jump to previous class or method (normal, visual, operator)
]M Jump to next class or method (normal, visual, operator)
aC Select a class. Ex: vaC, daC, yaC, caC (normal, operator)
iC Select inner class. Ex: viC, diC, yiC, ciC (normal, operator)
aM Select a function or method. Ex: vaM, daM, yaM, caM (normal, operator)
iM Select inner func. or method. Ex: viM, diM, yiM, ciM (normal, operator)
========== ============================

插件 Pythonsense

这个插件提供了类似的 Action ,但略有修改:

The stock Vim 8.0 "class" motions ("]]", "[[", etc.), find blocks that begin at the first column, regardless of whether or not these are class or function blocks, while its method/function motions ("[m", "]m", etc.) find all blocks at any indent regardless of whether or not these are class or function blocks. In contrast, "Pythonsense" class motions work on finding all and only class definitions, regardless of their indent level, while its method/function motions work on finding all and only method/function definitions, regardless of their indent level.

所有详细信息和示例均在 https://github.com/jeetsukumaran/vim-pythonsense#stock-vim-vs-pythonsense-motions 中提供.此外,该插件还定义了文本对象 ic/ac (class), if/af (function), id/ad (docstring) .

Neovim & nvim-treesitter-textobjects

对于neovim,您可以使用treesitter 和neovim 插件nvim-treesitter-textobjects .

文本对象 if/af & ic/ac

这些不包含在 $VIMRUNTIME/ftplugin/python.vim 中,但由一些插件提供

有关 python 文本对象的讨论,请参阅 what's the fastest way to select a function of Python via VIM? .

关于python - 在 vim 中编辑 python 文件的更高效的 Action ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/896145/

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