]> git.mdlowis.com Git - projs/tide.git/commitdiff
updated TOT and added new tag
authorMichael D. Lowis <mike.lowis@gentex.com>
Tue, 27 Mar 2018 23:17:54 +0000 (19:17 -0400)
committerMichael D. Lowis <mike.lowis@gentex.com>
Tue, 27 Mar 2018 23:17:54 +0000 (19:17 -0400)
TODO.md
tide.c

diff --git a/TODO.md b/TODO.md
index 96d294a45a0726234641c80ac3dd9920156495d5..45af57572aefcdb81c613619e43859b5d7c047e0 100644 (file)
--- a/TODO.md
+++ b/TODO.md
@@ -5,6 +5,16 @@ Up Next:
 * B2+B1 click executes command with selection as argument
 * add command line flags to toggle options (Tabs, Indent, etc..)
 
+Tags:
+
+* Clear - Clear the current window's edit buffer
+* Line - Get the current line number(s) containing the selection
+* Kill - Kill a background command
+* Font - Toggle font between monospace and proportional or set the font
+* ID - Get window id of the X window
+* Zerox - Create a copy of the window
+* Lang - Set the language for syntax highlighting
+
 The Future:
 
 * Wily-like rc file for registering builtins
diff --git a/tide.c b/tide.c
index 14a7f5f23e435e885d77043884ff32cc7976f243..e95c44bd873e7ec473d7c21c43a4f751092e5d44 100644 (file)
--- a/tide.c
+++ b/tide.c
@@ -519,6 +519,7 @@ static Tag Builtins[] = {
     { .tag = "GoTo",   .action = jump_to   },
     { .tag = "Get",    .action = get       },
     { .tag = "Indent", .action = indent    },
+    { .tag = "New",    .action = new_win   },
     { .tag = "Paste",  .action = paste     },
     { .tag = "Put",    .action = put       },
     { .tag = "Redo",   .action = tag_redo  },