mirror of
https://github.com/kovidgoyal/kitty
synced 2026-07-18 14:34:52 +02:00
Rename kitty-tool to kitten
It's easier to type, and cuter. Also, most, if not all of the TUI parts of kitty's kittens will eventually be re-written into kitten. The only downside I can see is that we cant tab complete kitty anymore, but hopefully there will be less reason to run kitty from the shell as command line tools migrate to kitten. Meowrrrr!!!
This commit is contained in:
@@ -26,9 +26,9 @@ def runpy(args: List[str]) -> None:
|
||||
|
||||
|
||||
def hold(args: List[str]) -> None:
|
||||
from kitty.constants import kitty_tool_exe
|
||||
args = ['kitty-tool', '__hold_till_enter__'] + args[1:]
|
||||
os.execvp(kitty_tool_exe(), args)
|
||||
from kitty.constants import kitten_exe
|
||||
args = ['kitten', '__hold_till_enter__'] + args[1:]
|
||||
os.execvp(kitten_exe(), args)
|
||||
|
||||
|
||||
def open_urls(args: List[str]) -> None:
|
||||
|
||||
Reference in New Issue
Block a user