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

master
Jeremy Hayes 2022-02-10 08:28:11 -06:00
parent ab8ec94c1e
commit d9c822f4d7
2 changed files with 2 additions and 2 deletions

View File

@ -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"),

View File

@ -4,8 +4,6 @@ Modified from: Brandon Lovrien version
Command module for programming variable naming conventions
==========================================================
"""
from dragonfly import *