summaryrefslogtreecommitdiffstats
path: root/src/commands/command_line.rs
AgeCommit message (Collapse)Author
2020-09-19Change command to use an enum instead of polymorphismJiayi Zhao
2020-08-30rework and fix issuesJiayi Zhao
- fixed bug where io tasks would not run when user is in a textfield or prompt - fixed bug where cut doesn't work - rework structs to have private fields and public functions - move IOWorkerObserver into seperate file - move code from TuiView to TuiFolderView
2020-08-29big rework and dependency updateJiayi Zhao
- abstract JoshutoContext implementation behind functions - rework io workers in an attempt to fix a bug - update dependencies - remove JoshutoContextWorker
2020-05-13rework command parsing and add shell commandJiayi Zhao
- This change will break compatibility with previous keymap.toml configs - 'shell' command allows users to run a shell command inside joshuto
2020-03-16cargo clippyJiayi Zhao
2020-02-22implement textfield widgetJiayi Zhao
- for asking users for long input strings - implement prompt widget - for prompting users for a single key response
2020-02-22move the majority of rendering into its own widget: TuiViewJiayi Zhao
- textfield is now a widget as well - reduced code duplication with TuiView - add backtab support - add a message queue for notifications
2020-02-16remove ncurses dependencyJiayi Zhao
- clean up code - update theme config - fix localstate tracking file selection not selecting proper files
2020-02-16rework rendering system to use tui-rs widgetsJiayi Zhao
- move files around - delete some old ncurses code - integrate tui-rs styles and colors
2020-02-13more work on textfieldJiayi Zhao
2020-02-13textfield progressionJiayi Zhao
2020-02-11more progress on tui-rs workJiayi Zhao
2020-02-11progress on switching to tui-rs for uiJiayi Zhao
2019-07-19changed how commands are handledJiayi Zhao
- arguments no longer go through wordexp (still working on a good alternative) other changes: - changed update_contents to reload_contents - opening files with mimetype entries are now moved from unix.rs to mimetypes.rs
2019-06-29rework error systemJiayi Zhao
- JoshutoErrorKind now envelops all possible errors by Joshuto - JoshutoError behaves like std::io::Error - add JoshutoResult
2019-06-01optimize some printing codeJiayi Zhao
2019-05-27refactor rename and search to make use of the command lineJiayi Zhao
- update all other commands that make use of textfield to use new interface
2019-05-26update commands to use new textfieldJiayi Zhao
2019-05-25changed the way keymap commands are parsedJiayi Zhao
- add a command line command