aboutsummaryrefslogtreecommitdiffstats
path: root/docs (unfollow)
Commit message (Collapse)Author
2024-04-22docs: fix "From source" `cd` command (#1973)Richard de Boer
`atuin` was moved into the `crates/` directory in 95cc4720
2024-01-29feat(zsh): update widget names (#1631)Koichi Murase
The current widget names for Zsh start with "_", which gives an impression to users that those widgets are internal API and should not be bound by the users. However, we actually instruct users to set up custom keybindings by specifying them to bindkey. In other shells, a separate namespace for widgets are not prepared, so we want to prefix "_" to shell function names to tell the users that these are not the commands that are supposed to be called from the command line. However, the widget names are separated in their own namespace in Zsh, so we do not have to isolate them by prefixing "_". In fact, other frameworks such as `fzf` define widgets with names not starting with "_". In this patch, we update the widget names to have the form "atuin-*". The old widget names that existed in the release version <= 17.2.1 are left for compatibility.
2024-01-16docs: remove old docusaurus (#1581)Ellie Huxtable
2024-01-13feat(ui): vim mode (#1553)YummyOreo
* feat(config): add vim option to config * feat(ui): simple vim mode * fix(windows): windows sadly doesn't support the stuff * feat(ui): blinking * fix(merge) * revert: reverts some debugging stuff * feat(ui): changes the defaut to insert, don't know what should be the default * feat(ui): implements some vim parity * doc: adds this to the docs * docs(keybindings): adds vim mode keybindsings to the list of keybindings * refactor: rustfmt and remove the docs for pr in own repo * refactor: use execute! * Update atuin/src/command/client/search/interactive.rs --------- Co-authored-by: Ellie Huxtable <ellie@elliehuxtable.com>
2024-01-08docs: refer to image with multi-arch support (#1513)Matthew Berryman
2024-01-08feat: include atuin login in secret patterns (#1518)Matthew Berryman
* include atuin login in secret patterns * doc catchup
2024-01-02feat(bash): provide auto-complete source for ble.sh (#1487)Koichi Murase
* feat(bash): provide auto-complete source for ble.sh * docs(integration): mention the auto-complete source for ble.sh
2024-01-01docs: update logo (#1481)Ellie Huxtable
2024-01-01docs: add docs for zsh-autosuggestion integration (#1480)Ellie Huxtable
I've added an integrations page to the docs. We can maintain a list of such integrations
2023-12-27feat: Add TLS to atuin-server (#1457)Eric Hodel
* Add TLS to atuin-server atuin as a project already includes most of the dependencies necessary for server-side TLS. This allows `atuin server start` to use a TLS certificate when self-hosting in order to avoid the complication of wrapping it in a TLS-aware proxy server. Configuration is handled similar to the metrics server with its own struct and currently accepts only the private key and certificate file paths. Starting a TLS server and a TCP server are divergent because the tests need to bind to an arbitrary port to avoid collisions across tests. The API to accomplish this for a TLS server is much more verbose. * Fix clippy, fmt * Add TLS section to self-hosting
2023-12-14docs: correct linkEllie Huxtable
2023-12-14docs: add fish install script (#1447)Ellie Huxtable
2023-12-14docs: add Void Linux install instruction (#1445)Marcin Puc
* docs(readme): add Void Linux install instruction * docs: add Void Linux install instruction to advanced-install.md
2023-12-14docs: align setup links in docs and readme (#1446)Ellie Huxtable
2023-11-23docs: new stats config (#1412)Ellie Huxtable
2023-11-23docs: Update Arch Linux package URL in advanced-install.md (#1407)Felix Yan
The old URL returns 404 now.
2023-11-22docs: Update sync.md (#1409)镜面王子
Linux name correction
2023-11-10Bash `enter_accept` best effort fixes (#1384)Patrick Jackson
* fix(bash): Rewrite the enter_accept integration * docs(bash): Update bash installation instructions with warnings
2023-11-01Update docs (#1367)Ellie Huxtable
2023-10-26Add release blog post and update docs (#1332)Ellie Huxtable
* Add release blog post and update docs * I forgot I moved the blog lmao * Fix images
2023-10-26fix(nu): disable the up-arrow keybinding for Nushell (#1329)Patrick Jackson
2023-10-21Document that the self-hosted port is TCP (#1317)Nemo157
2023-10-20Add fish support for `enter_accept` (#1315)Ellie Huxtable
* Add fish support for `enter_accept` Also fixes shell detection. Who trusted me to write jetlagged code last night huh? * Document
2023-10-20Add enter_accept to immediately execute an accepted command (#1311)Ellie Huxtable
* make enter execute the command, tab copy it * Add config for enter_accept enter_accept will make Atuin immediately accept an execute a command when selected. It defaults to false in our binary, but the default config enables it. This means that users who already use atuin will not default to the new behaviour unless they opt in, but new users will have it by default. Thanks to @davidhewitt for the patch and bulk of this implementation! Currently we have it just for zsh, but I'll follow up with other shells (unless anyone beats me to it :D) * Add docs * we need to tidy up the ui code anyway * Check if using zsh * Update docs/docs/config/config.md Co-authored-by: Conrad Ludgate <conradludgate@gmail.com> --------- Co-authored-by: David Hewitt <1939362+davidhewitt@users.noreply.github.com> Co-authored-by: Conrad Ludgate <conradludgate@gmail.com>
2023-10-17Bump @babel/traverse from 7.21.2 to 7.23.2 in /docs (#1309)dependabot[bot]
Bumps [@babel/traverse](https://github.com/babel/babel/tree/HEAD/packages/babel-traverse) from 7.21.2 to 7.23.2. - [Release notes](https://github.com/babel/babel/releases) - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md) - [Commits](https://github.com/babel/babel/commits/v7.23.2/packages/babel-traverse) --- updated-dependencies: - dependency-name: "@babel/traverse" dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-14Update key binding docsEllie Huxtable
2023-10-09Update key-binding.md (#1291)Evan McBeth
added some info about FISH and how to bind the CTRL-up keyset.
2023-10-04Fix/1207 deleted entries shown in interactive search (#1272)Dieter Eickstaedt
2023-09-30feat: copy to clipboard (#1249)YummyOreo
* feat: adds clipboard as a dep * feat: add copy if you press ctl+y * docs: add copy to clipboard to docs
2023-09-29add --reverse to history list (#1252)Chandra Kiran G
* wip: add --reverse to history list * fix: remove print_list being called twice when reverse=true * chore: update documentation * feat: Avoid unneeded reverse by iterate forward or backward instead * feat: Make sure to only iterate once and avoid unneeded reverse call * feat: It used to be reverse by default. So make it default true here to be backwards compatible * fix clap --------- Co-authored-by: Dieter Eickstädt <eickstaedt@deicon.de>
2023-09-18Add connect timeout and overall timeout (#1238)Ellie Huxtable
* Add connect timeout and overall timeout * Make it configurable * Fix test * Add docs
2023-09-17feat(keyup): Configure SearchMode for KeyUp invocation #1216 (#1224)Dieter Eickstaedt
* feat(keyup): Configure SearchMode for KeyUp invocation #1216 * docs: adjusted search mode documentation * feat: setting search mode on engine * chore: cargo fmt * chore: removed redundant field name
2023-09-14config.md: invert mode detailed options (#1225)Matheus Martins
2023-09-01Update docker.mdEllie Huxtable
2023-08-30Update shell-completions.mdEllie Huxtable
2023-08-28Update config.mdEllie Huxtable
2023-08-19Automatically filter out secrets (#1182)Ellie Huxtable
I'd like to extend the regex list here very soon, but start off by automatically filtering out secrets. Do not store them in history! I've included regex for: 1. AWS key id 2. Github pat (old and new) 3. Slack oauth tokens (bot, user) 4. Slack webhooks 5. Stripe live/test keys Will need updating after #806
2023-08-17docs: update `workspace` config key to `workspaces` (#1174)Thomas Buckley-Houston
2023-08-09Update(docs) Add `workspace` to config.toml and config.md (#1157)Emanuele Panzeri
2023-08-02fix(docs): Correct command overview paths (#1145)LeoniePhiline
2023-08-01fix(docs): List all presently documented commands (#1140)LeoniePhiline
2023-07-31Add support for `max_preview_height` setting (#1088)Richard Jones
2023-07-30Move all references to the old repo (#1132)Ellie Huxtable
The repo now lives on an org! Move all references to the old path.
2023-07-27use Ctrl-n instead of Alt-n on macOS (#1106)Richard Turner
* use Ctrl-n instead of Alt-n on macOS * make ctrl-n instead of alt-n configurable
2023-07-26Tidy up docs (#1120)Ellie Huxtable
2023-07-26Remove vercel config (#1119)Ellie Huxtable
2023-07-26Try adjusting docs root (#1118)Ellie Huxtable
2023-07-26Serve docusaurus on /docs/ (#1117)Ellie Huxtable
2023-07-14Bump semver from 5.7.1 to 5.7.2 in /docs (#1100)dependabot[bot]
Bumps [semver](https://github.com/npm/node-semver) from 5.7.1 to 5.7.2. - [Release notes](https://github.com/npm/node-semver/releases) - [Changelog](https://github.com/npm/node-semver/blob/v5.7.2/CHANGELOG.md) - [Commits](https://github.com/npm/node-semver/compare/v5.7.1...v5.7.2) --- updated-dependencies: - dependency-name: semver dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-07-11Add OG image (#1097)Ellie Huxtable
* Add OG image * Fix * byebye