有没有办法在SublimeText3中选择当前光标位置和下一个/上一个书签之间的文本?
与 shift 键的组合不起作用: shift F2 转到上一个书签(即 shift + F2 =“转到下一个书签”)。选择“下一个书签”菜单项时按住 shift 也不起作用。
答案 0 :(得分:8)
为了做到这一点,你可能需要一个插件。我刚刚创建了这个简单的插件,它根据forward参数的值从当前光标位置选择到下一个/上一个书签。
这是插件:
import sublime, sublime_plugin
class SelectToBookmarkCommand(sublime_plugin.TextCommand):
def run(self, edit, **args):
"""Get initial position"""
initialPoint = self.view.sel()[0].begin()
"""Clear selected things (if any)"""
self.view.sel().clear()
"""Move to next bookmark or previous bookmark"""
forward = args.get('forward','true')
if forward is True:
self.view.run_command("next_bookmark")
else:
self.view.run_command("prev_bookmark")
"""Get current position (position of the bookmark)"""
finalPoint = self.view.sel()[0].begin()
"""Clear selected things (if any)"""
self.view.sel().clear()
"""Region to select"""
regionToSelect = sublime.Region(initialPoint, finalPoint)
"""Add the region to the selection"""
self.view.sel().add(regionToSelect)
使用工具>新插件并使用提供的插件。将其另存为 SelectToBookmark.py 。 最后,使用以下内容将keyBindings添加到用户文件中:
{
"keys": ["ctrl+alt+e"],
"command": "select_to_bookmark",
"args": {"forward": true}
}
使用另一个keyBinding,将 forward 参数设置为 false ,从当前位置选择到上一个书签。
编辑:正如用户@MattDMo评论的那样: "确保将.py文件保存在包/ 用户 中 - 您可以找到系统上的目录(如果它没有自动出现) )通过选择首选项 - >浏览包 ...菜单选项"
答案 1 :(得分:3)
与@ sergioFC的答案类似。此版本用于SublimeBookmark包。
import sublime, sublime_plugin
class SelectToBookmarkCommand(sublime_plugin.TextCommand):
def run(self, edit, **args):
"""Get initial position"""
initialPoint = self.view.sel()[0].begin()
"""Clear selected things (if any)"""
self.view.sel().clear()
"""Move to next bookmark or previous bookmark"""
forward = args.get('forward','true')
if forward is True:
self.view.window().run_command("sublime_bookmark",{ "type" : "goto_previous" })
else:
self.view.window().run_command("sublime_bookmark",{ "type" : "goto_next" })
"""Get current position (position of the bookmark)"""
finalPoint = self.view.sel()[0].begin()
"""Clear selected things (if any)"""
self.view.sel().clear()
"""Region to select"""
regionToSelect = sublime.Region(initialPoint, finalPoint)
"""Add the region to the selection"""
self.view.sel().add(regionToSelect)