added makefile install and uninstall rules changed license to inclue myself modified some keybindings added desktop file added todomaster
parent
2957968afc
commit
52650661ec
@ -0,0 +1,30 @@ |
|||||||
|
[x] use system lua lib |
||||||
|
[ ] make it std=c11 not gnu11 |
||||||
|
[ ] make it compile on openbsd |
||||||
|
[ ] update license, readme and documentation |
||||||
|
[ ] add manpage |
||||||
|
[x] add desktop file |
||||||
|
[x] makefile: add install and uninstall |
||||||
|
[ ] SDL: disable key not recognized messages |
||||||
|
[ ] add menu to exec arbitrary command |
||||||
|
[ ] that command can be what is selected |
||||||
|
[ ] add a cross to close tab |
||||||
|
[ ] prevent overscrolling on treeview |
||||||
|
[ ] user config file and/or init.lua |
||||||
|
[ ] save session and restore on reopening |
||||||
|
[ ] some key bindings: |
||||||
|
[ ] alt+right == End |
||||||
|
[ ] alt+left == Home |
||||||
|
[ ] alt+up == PageUp |
||||||
|
[ ] alt+down == PageDown |
||||||
|
[ ] ctrl+d == duplicate line |
||||||
|
[ ] ctrl+x == cut line || selection |
||||||
|
[ ] ctrl+c == copy line || selection |
||||||
|
[ ] ctrl+shift+o == change & open project folder -> core:open-project-module |
||||||
|
[ ] ctrl+q == quit |
||||||
|
[x] change alt+<number> to ctrl+<number> |
||||||
|
[ ] add multi cursor system |
||||||
|
[ ] add binding to open up a cheatsheet of keybinding, with a |
||||||
|
search feature |
||||||
|
[ ] implement visual "ruler" at column 80 |
||||||
|
[ ] show hidden files config and binding |
@ -0,0 +1,16 @@ |
|||||||
|
[Desktop Entry] |
||||||
|
|
||||||
|
Name=Lite |
||||||
|
GenericName=Text Editor |
||||||
|
Comment=Lightweight Lua text editor |
||||||
|
|
||||||
|
Icon=lite |
||||||
|
Type=Application |
||||||
|
Categories=Utility;TextEditor;Development; |
||||||
|
Keywords=text;editor;syntax; |
||||||
|
|
||||||
|
Exec=lite %F |
||||||
|
StartupNotify=false |
||||||
|
Terminal=false |
||||||
|
MimeType=text/plain;text/x-chdr;text/x-csrc;text/x-c++hdr;text/x-c++src;text/x-java;text/x-dsrc;text/x-pascal;text/x-perl;text/x-python;application/x-php;application/x-httpd-php3;application/x-httpd-php4;application/x-httpd-php5;application/xml;text/html;text/css;text/x-sql;text/x-diff; |
||||||
|
|
Loading…
Reference in new issue