Commit Graph

1376 Commits (e57a00c19c962d6f9a537148fa140df5adf478fd)
 

Author SHA1 Message Date
Blaž Hrastnik ce25aa951e Allow setting a filepath on :write
Blaž Hrastnik a2147fc7d5 Change help prompt styling
Blaž Hrastnik d8e16554bf Don't crash if no filename specified on open
Blaž Hrastnik 2cc30cd07c Categorize _ as a word char, not punctuation
Blaž Hrastnik 0dde5f2cae Fix badge
Blaž Hrastnik b8d6e6ad28 Allow setting verbosity to info again
Blaž Hrastnik 5825bce0e4 Link to install/keymap docs, fix build status badge
Blaž Hrastnik aeabfc55a8 Adjust golang indents yet again
Blaž Hrastnik 17e9386388 Allow moving to EOL byte, also fixes
Blaž Hrastnik 138787f76e Drop clap for pico-args
We barely have any flags so it's not worth the compilation time or
binary size to use clap.
Blaž Hrastnik 1132c5122f Update mdbook styling, add link to AUR
Blaž Hrastnik 4a8053e832
Merge pull request from helix-editor/dependabot/cargo/tokio-1.6.1
Bump tokio from 1.6.0 to 1.6.1
Blaž Hrastnik e033a4b8ac
Merge pull request from helix-editor/dependabot/github_actions/actions/upload-artifact-2.2.3
Bump actions/upload-artifact from 1 to 2.2.3
Blaž Hrastnik acbcd758bd
Merge pull request from helix-editor/dependabot/github_actions/actions/cache-2.1.6
Bump actions/cache from 1 to 2.1.6
dependabot[bot] 76eed4caad
Bump tokio from 1.6.0 to 1.6.1
Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.6.0 to 1.6.1.
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.6.0...tokio-1.6.1)

Signed-off-by: dependabot[bot] <support@github.com>
dependabot[bot] 3170c49be8
Bump actions/cache from 1 to 2.1.6
Bumps [actions/cache](https://github.com/actions/cache) from 1 to 2.1.6.
- [Release notes](https://github.com/actions/cache/releases)
- [Commits](https://github.com/actions/cache/compare/v1...v2.1.6)

Signed-off-by: dependabot[bot] <support@github.com>
dependabot[bot] 0327d66653
Bump actions/upload-artifact from 1 to 2.2.3
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 1 to 2.2.3.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](https://github.com/actions/upload-artifact/compare/v1...v2.2.3)

Signed-off-by: dependabot[bot] <support@github.com>
Blaž Hrastnik c67e31830d Add dependabot config
Blaž Hrastnik 6460501a44 Update architecture.md
Blaž Hrastnik 67b037050f Adjust rust indents
Blaž Hrastnik 87d0617f3b Completion: Format docs tabs & highlight in the doc's native language
Blaž Hrastnik 668f735232 Update the README's matrix link
Blaž Hrastnik a3a9502596 Add a github pages auto-build action.
Blaž Hrastnik 3810650a6b Completion: Render non-markdown docs too
Blaž Hrastnik 2c48d65b15 Format document on save
Blaž Hrastnik d5466eddf5 Update flake deps
Blaž Hrastnik d54ae09d3b ESC should exit both completion and insert mode
Blaž Hrastnik a28eaa81a0 Golang indent adjustment
Blaž Hrastnik d708efe275 Fix cursor positioning for prompts
Blaž Hrastnik 3336023614 ui: Menu rendering adjustments
Blaž Hrastnik 094203c74e Update deps, introduce the new tree-sitter lifetimes
Blaž Hrastnik b114cfa119 Display more data in completion popups.
Blaž Hrastnik f1dc25a774 Support count for indent too
Blaž Hrastnik 4f335fabc8 Fix unindent to work with tabs, take a count
Blaž Hrastnik f366b97bce Update dependencies
Blaž Hrastnik 9c24f1ec0e Drop selection_lines completely, change move_line_start binding
Blaž Hrastnik f99a683991 Fix crash if appending at end of line on the last line of the file
Blaž Hrastnik 9edae7e1f8 syntax: golang: Indent type declarations
Blaž Hrastnik 51d1d43289 Double the UI picker file limit.
Blaž Hrastnik 5a245b83a0 Append :fmt as a separate history state
Blaž Hrastnik 2100f5a2c0 Address clippy lint.
Blaž Hrastnik 8f6f329057 If switching to a previously open buffer in the same view, keep it's old offset
Blaž Hrastnik 8949347e2c Completion: apply additionalTextEdits.
Used for adding imports to the file when completing.
Blaž Hrastnik 54de768915 Fix crash if typing | (regex or) into the prompt.
Zero-width matches at the start of the file make no sense to us.
Blaž Hrastnik 6e03019a2c Adjust highlighting for rust.
Blaž Hrastnik 31d41080ed Add indentation queries for golang.
Blaž Hrastnik 5e6b46e7c5 Use array::IntoIter.
Blaž Hrastnik 354b822d21 Fix crash on xa<Enter> if we were on the last line.
Blaž Hrastnik fae2127a11 Drop cx.view_id, it was used before we had cx.current.
Blaž Hrastnik 0e5b421646 When calculating a new selection, we need to take newly inserted text into account.