Added logic to multi-edit.py to allow selecting the word at the cursor and selecting the line you are on or the current line plus a number of lines specified
parent
ab8ec94c1e
commit
d9c822f4d7
|
@ -117,6 +117,8 @@ config.cmd.map = Item(
|
|||
"copy": release + Key("c-c"),
|
||||
"cut": release + Key("c-x"),
|
||||
"select all": release + Key("c-a"),
|
||||
"select word": release + Key("c-right") + Key("shift:down") + Key("c-left"),
|
||||
"select [<n> | this] (line|lines)": release + Key("home, s-down:%(n)d"),
|
||||
"[hold] shift": Key("shift:down"),
|
||||
"release shift": Key("shift:up"),
|
||||
"[hold] control": Key("ctrl:down"),
|
||||
|
|
|
@ -4,8 +4,6 @@ Modified from: Brandon Lovrien version
|
|||
|
||||
Command module for programming variable naming conventions
|
||||
==========================================================
|
||||
|
||||
|
||||
"""
|
||||
|
||||
from dragonfly import *
|
||||
|
|
Loading…
Reference in New Issue