aboutsummaryrefslogtreecommitdiffstats
path: root/src (follow)
Commit message (Collapse)AuthorAge
* chore: use fork of skim (#803)Conrad Ludgate2023-03-26
| | | | | | | | | * use fuzzy-matcher instead of skim switch to a search-engine abstraction * fmt * fix deprecated warnings
* feat: add *Nushell* support (#788)Steven Xu2023-03-26
| | | | | | | | | * feat: add *Nushell* support * refactor: use `sh` to swap `STDOUT` and `STDERR` instead of using a temporary file * feat: include both keybindings, with the current REPL buffer passed to *Atuin*'s * feat: don't record commands run by keybindings
* feat: add an inline view mode (#648)Patrick Decat2023-03-25
| | | | | * add inline viewport * Add inline_height setting. Zero disables inline mode (the default)
* Respect exit_mode setting when exiting with arrow down keypress (#807)Patrick Decat2023-03-25
|
* Delete all instances of a command (#797)Ellie Huxtable2023-03-24
| | | | | | | | | | | | | | | | | | * Delete all instances of a command Our search command will de-dupe results by default. But... This isn't great for deleting! You don't want to run it over-and-over-and-over until all commands are deleted. Loop the query, and keep on deleting what it returns until they are all gone. * Optimize delete upload It was running a request for every element, on every sync lol Only push a delete if needed Future: push all deletes in one request
* chore: remove tui vendoring (#804)Conrad Ludgate2023-03-23
|
* Allow changing search_mode during interactive search (#586)Krut Patel2023-03-22
| | | | | | | | | | | | | | | * Make search_mode a part of SearchState * Allow changing search mode using ctrl+s * Tweak state reset for switched_search_mode * Improve search_mode display in interactive mode * Incorporate review suggestion * Tweak language * Fix Clippy and format
* fix: paste into terminal after switching modes (#793)Hamza Hamud2023-03-20
| | | | | * fix: paste into terminal after switching modes * fix: remove collect and fix format
* Add history deletion (#791)Ellie Huxtable2023-03-20
| | | | | | | | | | | | | * Drop events. I'd still like to do them, but differently * Start adding delete api stuff * Set mailmap * Delete delete delete * Fix tests * Make clippy happy
* skim-demo (#695)Conrad Ludgate2023-03-19
| | | | | | | | | | | | | | | * skim-demo * skim some more * Weight first word match higher (#712) * some improvements * make skim opt-in --------- Co-authored-by: Frank Hamand <frankhamand@gmail.com>
* Prefer PWD environment variable over cwd if available to better support ↵Patrick Decat2023-03-14
| | | | symbolic links (#783)
* Fixes a bug on windows (#780)YummyOreo2023-03-14
| | | | | * Fixes the windows double input issue instead of the patchy way * clippy allow
* add common prefixes and subcommands to stats (#773)Conrad Ludgate2023-03-13
| | | | | * add common prefixes and subcommands to stats * fmt
* fix new stats unique count (#772)Conrad Ludgate2023-03-09
|
* Fix before/after combined with limit (#770)Ellie Huxtable2023-03-08
| | | | | | | | | | | | | | * Fix before/after combined with limit Mixing filters done in Rust with filters done in SQL is _no bueno_. Been meaning to do this for a while anyways. Search params are getting a bit fat but oh well! * Make an excuse for a big function sig * Do options map_or not if * Fix tests
* fix(client): always read session_path from settings (#757)Luke Karrys2023-03-06
| | | | | | | * fix(client): always read session_path from settings * fixup! fix(client): always read session_path from settings * fixup! fix(client): always read session_path from settings
* Windows support (#754)YummyOreo2023-03-05
| | | | | | | | | | | | | | | | | | | * adds support for getting home dir in windows * fixes bug * adds windows server support + build for linux ^| todo: test server on linux * improvements to redability * removes comment * returns if windows when importing auto * this should be here, to prevent double inputs * adds explanation to why we have to throw away 1 event in the tui * better message when running atuin import on windows + spell fix
* feat: add common default keybindings (#719)Steven Xu2023-03-05
| | | | | | | | | * feat: add common default keybindings * feat: add `WORD_SEPARATORS` to config as `word_chars`, as this is what *Zsh* calls it * feat: add option for *Emacs* word jumping * feat: scroll with `PageUp` and `PageDown`, cf #374
* Up arrow filter_mode setting default to global filter mode (#758)Ellie Huxtable2023-03-05
| | | Resolves #756
* Show preview of selected command (#643)Patrick Decat2023-03-05
| | | | | | | | | | | | | | | | | | | | | | | | | * Only show help if terminal strictly has more than one line * There is no border around the input line in compact mode * Add command preview * Dynamic preview height * Avoid extra allocations Co-authored-by: Conrad Ludgate <oon@conradludgate.com> * Address clippy error * Merge normal and compact views code * Add show_preview setting, disabled by default * Convert `bool` to `int` with `if` for legibility --------- Co-authored-by: Conrad Ludgate <oon@conradludgate.com>
* Disable 2 tests that shouldn't run in release mode (#736)cyqsimon2023-02-27
| | | | | These tests expect `debug_assert!` to panic: - `pos_of_panics_on_out_of_bounds` - `index_of_panics_on_out_of_bounds`
* Release v13 (#727)Ellie Huxtable2023-02-26
| | | | | | | * Write release blog post * Bump versions * Update contributors
* Revert "Remove shortcut numbers (#708)" (#724)Ellie Huxtable2023-02-24
| | | This reverts commit 3fdd4f4591bc573906480c1c700df91ba866a2cb.
* Remove shortcut numbers (#708)Ellie Huxtable2023-02-15
| | | | | | | | * Remove shortcut numbers I was also going to remove the offset so scrolling only happens at the top. But tbh, I quite like it this way. * Remove key binding
* fish: Fix `atuin init` for the fish shell (#699)Tobias Hunger2023-02-14
|
* Check before unwrapping in stats (#717)Ellie Huxtable2023-02-14
| | | Should fix the error @pdecat found!
* Add `history_filter` cfg to exclude commands from history (#515) (#716)Johannes Baiter2023-02-14
| | | | | Adds a new `history_filter` setting through which users can specify a list of regular expressions that match commands that should not be recorded in the history.
* Allow using existing key file on login (#688)Trygve Aaberge2023-02-10
| | | | | | | | | | | | | | | | | | | | | | | | | | * Allow logging in without overwriting existing key file If the given key on login in empty, keep the existing key file rather than overwriting it with an empty file. This is useful if you log out and want to log in again and still use the same key, or if you have copied over the key file rather than providing it as input. * Refuse logging in if key is empty Before the previous commit, an empty key file would be created if key wasn't specified, and after the previous commit, the key file would not be created if the key wasn't specified and stay empty if it was empty. Now the log command checks the key file if a key is not specified and exits with an error message if either the key file couldn't be opened or is empty. If a key is specified, the key file is just created with it as before. * Validate the key on login, create new if no exists After reading the key either from an existing key file, or from the user input, validate that the provided key is valid (rather than just checking that it isn't empty). If no key file exists, create a new key instead of erroring out.
* stats (#707)Conrad Ludgate2023-02-10
|
* make update_needed check lazy (#706)Ellie Huxtable2023-02-10
|
* crossterm support (#331)Conrad Ludgate2023-02-10
| | | | | | | | | | | * crossterm v2 * patch crossterm * fix-version * no more tui dependency * lints
* display mnemonic key (#694)Conrad Ludgate2023-02-06
|
* Try to make clippy happy 🥺 (#686)Ellie Huxtable2023-02-06
| | | | | | | * Try to make clippy happy 🥺 * Fmt * I missed one (can't run clippy locally on airport wifi...)
* feat(history): Add new flag to allow custom output format (#662)Baptiste2023-01-26
| | | | | | | | | | | * feat(history): Add new flag to allow custom output format * more efficient formatting * add user and host * docs Co-authored-by: Conrad Ludgate <conrad.ludgate@truelayer.com>
* Update contributors.rsEllie Huxtable2023-01-24
| | | sorry @conradludgate 😭
* chore(#621): Exit atuin when pressing down arrow on most recent entry (#659)Baptiste2023-01-10
| | | | | Signed-off-by: Baptiste Roux <arte.but.posix@gmail.com> Signed-off-by: Baptiste Roux <arte.but.posix@gmail.com>
* Rework `atuin init` (#652)Jamie Quigley2022-12-24
| | | | | | | | | | | | | | * Rework `atuin init` This allows users to disable the CTRL-R and Up Arrow bindings, independently from one another * Document --disable-{ctrl-r,up-arrow} * Apply suggestions from code review Co-authored-by: Ellie Huxtable <ellie@elliehuxtable.com> Co-authored-by: Ellie Huxtable <ellie@elliehuxtable.com>
* Allow overriding filter and search modes from CLI (#635)Patrick Decat2022-12-18
| | | | | | | | | | | | | * Allow overriding filter and search modes from CLI arguments * Use session filter mode for bash up key binding * We precisely do not want to add quotes here so that all arguments are properly passed * Add --shell-up-key-binding hidden command argument and filter_mode_shell_up_key_binding configuration option to allow customizing the filter mode used when atuin is invoked from a shell up-key binding * Correct up binding for zsh Co-authored-by: Ellie Huxtable <ellie@elliehuxtable.com>
* Switch to using ATUIN_LOG instead of RUST_LOG (#642)Ellie Huxtable2022-12-16
| | | | | | | * Switch to using ATUIN_LOG instead of RUST_LOG * Stop clippy complaining * I should know better - clippy is never happy :(
* Fix session history (#620)Patrick Jackson2022-12-16
|
* Add support for some additional keys in interactive mode (#634)Patrick Decat2022-12-03
| | | | | | | * Ignore tab key in interactive mode * Support home and end keys in interactive mode * Support delete key in interactive mode
* Handle multiline commands in fish shell (#623)Patrick Jackson2022-11-19
|
* Release v12 (#599)Ellie Huxtable2022-11-06
| | | | | * Release v12 * Add new contributors
* Add setting for keeping typed query when exiting (#451)Sam Lanning2022-11-06
| | | | | | | * Add option for keeping typed query on escape fixes #422 * chore: Address duplicate if statement blocks
* fix #596: Avoid drawing a command section beyond the width of the list (#597)Sam Lanning2022-11-06
| | | | | * fix #596: Avoid drawing a command section beyond the width of the list * chore: remove unneeded parentheses
* Add local event log storage (#390)Ellie Huxtable2022-11-04
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add event data structures This adds the data structures required to start syncing events, rather than syncing history directly. Adjust event Fix Add event data structure to client * Add server event table sql * Add client event table migration Adjust migration * Insert into event table from client * Add event merge function Right now this just ensures we have the right amount of events given the history we have BUT it will also be used to merge CREATE/DELETE events, resulting in history being deleted :) * Make CI happy * Adjust * we don't limit history length any more * Update atuin-client/src/database.rs Co-authored-by: Conrad Ludgate <conradludgate@gmail.com> * fix usage * Fix typo * New Rust, new clippy stuff Co-authored-by: Conrad Ludgate <conradludgate@gmail.com>
* Exit with return code 1 when no results are found in `atuin search` command ↵TymanWasTaken2022-11-02
| | | | | | | (#489) * Exit with return code 1 when no results are found in `atuin search` command * Remove random whitespace
* docs: add more details about date parsing in the stats command (#579)Benjamin Vergnaud2022-10-21
| | | | | * docs: add more details about date parsing in the stats command * chore: Replace chrono-english crate with interim
* Respect fish shell's builtin private mode (#577)Patrick Jackson2022-10-21
|
* Upgrade clap (#568)Conrad Ludgate2022-10-18
|