ST3:插入相同的字符直到行尾
ST3: insert same character till end of line
有没有办法在 Sublime Text 3 中插入相同的字符直到行尾?我想使用此功能通过注释来构建我的代码。
例如在 R 中编码时,我可能想在破折号到第 80 列的地方发表评论 "Load file"。
# Load file --------------------------------------------------------------------
在其他情况下,注释可能会更长,因此插入的字符数应相应调整。
您可以使用and/or扩展这个简单的插件
import sublime, sublime_plugin
class CommenterCommand(sublime_plugin.TextCommand):
def run(self, edit):
sel = self.view.sel()[0]
line = self.view.line(sel)
[row, currentColumn] = self.view.rowcol(line.end())
while (currentColumn < 80):
self.view.insert(edit, self.view.text_point(row,currentColumn), "-")
currentColumn = currentColumn + 1
从键盘触发的插件示例。
有没有办法在 Sublime Text 3 中插入相同的字符直到行尾?我想使用此功能通过注释来构建我的代码。
例如在 R 中编码时,我可能想在破折号到第 80 列的地方发表评论 "Load file"。
# Load file --------------------------------------------------------------------
在其他情况下,注释可能会更长,因此插入的字符数应相应调整。
您可以使用and/or扩展这个简单的插件
import sublime, sublime_plugin
class CommenterCommand(sublime_plugin.TextCommand):
def run(self, edit):
sel = self.view.sel()[0]
line = self.view.line(sel)
[row, currentColumn] = self.view.rowcol(line.end())
while (currentColumn < 80):
self.view.insert(edit, self.view.text_point(row,currentColumn), "-")
currentColumn = currentColumn + 1
从键盘触发的插件示例。