Commit Graph

  • 9d6b670f74 Do not move past number of matches Kevin Sjöberg 2021-06-06 10:06:47 +0200
  • cc0a5e742f Refactor index assignment Kevin Sjöberg 2021-06-06 09:49:37 +0200
  • d16ff5ad70 Allow moving backwards in completions Kevin Sjöberg 2021-06-05 23:20:34 +0200
  • e83df61172 Trigger directory completion upon pressing Enter Kevin Sjöberg 2021-06-05 22:40:11 +0200
  • 5a7848353f Add a comment to `canonicalize_path` Wojciech Kępka 2021-06-06 07:34:18 +0200
  • bb38b8671b Add a TODO Wojciech Kępka 2021-06-06 07:31:40 +0200
  • 7d9b9cb16d Create document if it doesn't exist on save Wojciech Kępka 2021-06-06 07:09:50 +0200
  • 21d4a8050b Add spc w w for window mode Ivan Tham 2021-06-06 13:09:21 +0800
  • 5eaa79e780 wip Shafkath Shuhan 2021-06-06 00:41:17 -0400
  • 4847ef9607 added test Shafkath Shuhan 2021-06-06 00:33:40 -0400
  • e3167f594f add changes Shafkath Shuhan 2021-06-06 00:02:23 -0400
  • 9d4b0fdc58 fix Shafkath Shuhan 2021-06-05 23:38:51 -0400
  • a5a7b788c4 Merge branch 'patch-03' of github.com:kirawi/helix into patch-03 Shafkath Shuhan 2021-06-05 23:34:23 -0400
  • 5bbc2638b7 clippy Shafkath Shuhan 2021-06-05 23:34:06 -0400
  • 4e791f7c70
    Merge branch 'master' into patch-03 Kirawi 2021-06-05 23:31:27 -0400
  • d461702bfa
    Update helix-core/src/transaction.rs Kirawi 2021-06-05 23:29:39 -0400
  • c837334e04 Merge branch 'master' of github.com:helix-editor/helix into patch-03 Shafkath Shuhan 2021-06-05 23:27:58 -0400
  • c5edc6c096 fix unicode break Shafkath Shuhan 2021-06-05 23:23:42 -0400
  • 2b9cd741fa fix unicode break Shafkath Shuhan 2021-06-05 23:05:24 -0400
  • 2a5dbcf3f4 deploy: 5463a436a8 archseer 2021-06-06 01:49:31 +0000
  • 5463a436a8 Return an error if we request an embedded file that does not exist. Brian Dawn 2021-06-05 15:24:10 -0500
  • e09b0f4eff Add a smoke test around loading runtime files. Brian Dawn 2021-06-05 12:12:59 -0500
  • f3db12e240 Simplify the load_runtime_file code. Brian Dawn 2021-06-05 12:12:08 -0500
  • 676719b361 Simplify creating pathbufs. Brian Dawn 2021-06-05 11:52:13 -0500
  • ae105812d6 Apply suggestions from code review Brian Dawn 2021-06-05 11:50:34 -0500
  • 255598a2cb Make rust-embed optionally included based on the embed_runtime feature. Brian Dawn 2021-06-05 08:05:08 -0500
  • 62d181de78 Provide a feature flag to be able to embed the runtime folder. Brian Dawn 2021-06-03 15:46:56 -0500
  • abe169f523 deploy: 8c2fa12ffc archseer 2021-06-06 01:12:51 +0000
  • 8c2fa12ffc Add window mode Ivan Tham 2021-06-05 15:45:24 +0800
  • 212f6bc372 changed flag in build_cpp '/std:c++14' to '/std:c++17' due to tree_sitter_haskell not compiling on msvc without it Jan Hrastnik 2021-06-05 23:56:04 +0200
  • e042121f43 changed flag in build_cpp '/std:c++14' to '/std:c++17' due to tree_sitter_haskell not compiling on msvc without it Jan Hrastnik 2021-06-05 23:56:04 +0200
  • 08b1f5c48d Return an error if we request an embedded file that does not exist. Brian Dawn 2021-06-05 15:24:10 -0500
  • a80340d347 Add a smoke test around loading runtime files. Brian Dawn 2021-06-05 12:12:59 -0500
  • d2ba11a090 Simplify the load_runtime_file code. Brian Dawn 2021-06-05 12:12:08 -0500
  • 63f5d15dad Simplify creating pathbufs. Brian Dawn 2021-06-05 11:52:13 -0500
  • f9a5795e5b Apply suggestions from code review Brian Dawn 2021-06-05 11:50:34 -0500
  • 9ac0861cf9 Make rust-embed optionally included based on the embed_runtime feature. Brian Dawn 2021-06-05 08:05:08 -0500
  • d85d1b7463 Provide a feature flag to be able to embed the runtime folder. Brian Dawn 2021-06-03 15:46:56 -0500
  • c5c3ec07f4 fix: panicked at 'attempt to subtract with overflow' helix-term/src/ui/editor.rs:275:29 This would happen when the window-size was to small to display the entire width and one would start jumping forwards with f<some_char> and the beginning of the highlighted area would end up outside of the window ahkrr 2021-06-05 16:32:23 +0200
  • 444cd0b068 fix: make find_prev_char and till_prev_char work Bevore this PR `commands::find_prev_char` and `commands::till_prev_char` were triggerable through keys but `seach::find_nth_next()` was hardcoded in `_find_char`. The passed `fn` was nerver used. With this PR the passed `fn` is used. The change in search.rs resolves an off by one error in the behivor of `find_nth_prev` ahkrr 2021-06-05 16:25:45 +0200
  • f6a900fee1 syntax: Use a different C++ flag for MSVC Blaž Hrastnik 2021-06-05 23:57:30 +0900
  • 0bbc63013b fix: panicked at 'attempt to subtract with overflow' helix-term/src/ui/editor.rs:275:29 This would happen when the window-size was to small to display the entire width and one would start jumping forwards with f<some_char> and the beginning of the highlighted area would end up outside of the window ahkrr 2021-06-05 16:32:23 +0200
  • 01fcb29085 fix: make find_prev_char and till_prev_char work Bevore this PR `commands::find_prev_char` and `commands::till_prev_char` were triggerable through keys but `seach::find_nth_next()` was hardcoded in `_find_char`. The passed `fn` was nerver used. With this PR the passed `fn` is used. The change in search.rs resolves an off by one error in the behivor of `find_nth_prev` ahkrr 2021-06-05 16:25:45 +0200
  • 6254720f53
    Add unreachable context Ivan Tham 2021-06-05 20:18:27 +0800
  • 359b9c72bc Add more coverage for CI Ivan Tham 2021-06-05 19:32:10 +0800
  • 7cc9dfb355 Add window mode Ivan Tham 2021-06-05 15:45:24 +0800
  • 407b37c327 Better link to Matrix Blaž Hrastnik 2021-06-05 12:01:48 +0900
  • 2bb71a829e
    Don't panic on empty file/buffer (#108) notoria 2021-06-05 06:00:43 +0200
  • c17dcb8633
    Fixing Multiple Panics (#121) Kirawi 2021-06-04 23:49:19 -0400
  • 1c3dafe85e wip Shafkath Shuhan 2021-06-04 23:34:15 -0400
  • 40fe795983 wip Shafkath Shuhan 2021-06-04 23:29:32 -0400
  • 8db48d6d3d init Shafkath Shuhan 2021-06-04 23:13:27 -0400
  • 20059ee12e fixes Shafkath Shuhan 2021-06-04 21:38:57 -0400
  • c0a78a2026 fmt Shafkath Shuhan 2021-06-04 20:41:32 -0400
  • 566e2b0e7c fmt Shafkath Shuhan 2021-06-04 20:40:23 -0400
  • 135d473a29 add assert Shafkath Shuhan 2021-06-04 20:40:02 -0400
  • 5a344a3ae5 Address clippy lint Blaž Hrastnik 2021-06-05 09:27:59 +0900
  • 0310540580 deploy: a1f4b8f92b archseer 2021-06-05 00:26:01 +0000
  • a1f4b8f92b
    Add home-end keymaps, (as kakoune/vim do) (#83) Antoni Stevenet 2021-06-05 02:25:46 +0200
  • 72eaaaac99 syntax: Build C++ grammars as c++14 Blaž Hrastnik 2021-06-05 09:21:33 +0900
  • 8f78c0c612 syntax: Disable explicit debug/opt_level passing Blaž Hrastnik 2021-06-05 09:20:33 +0900
  • 229833ffc8 theme: Log invalid cases in theme.toml parse Ingrid Rebecca Abraham 2021-06-05 01:31:23 +0200
  • e5fdf19561 theme: tests for parse_style Ingrid Rebecca Abraham 2021-06-05 01:13:47 +0200
  • 23a10a47a1 fix #88 Shafkath Shuhan 2021-06-04 18:51:12 -0400
  • cb7dda0974 fix #107 for cases w/o syntax highlighting Shafkath Shuhan 2021-06-04 18:24:40 -0400
  • 16b8fc14f9 fixup: parse modifiers with filter_map Ingrid Rebecca Abraham 2021-06-04 23:21:33 +0200
  • a7ddfcc1f6 docs: theme documentation Ingrid Rebecca Abraham 2021-06-04 23:20:47 +0200
  • 34c902a27d remove unecessary change Shafkath Shuhan 2021-06-04 16:39:53 -0400
  • 75494ad72d drop comment Shafkath Shuhan 2021-06-04 16:23:08 -0400
  • 200b78e3c1 fmt Shafkath Shuhan 2021-06-04 16:21:53 -0400
  • 1d533f2b22 seems to work? Shafkath Shuhan 2021-06-04 16:20:19 -0400
  • 68a8eb921b merge upstream, remove ^ and $ mappings Antoni Stevent 2021-06-04 20:45:24 +0200
  • c60200f973 fixed known bugs Shafkath Shuhan 2021-06-04 14:30:18 -0400
  • 4e300306be added comment ahkrr 2021-06-04 19:49:27 +0200
  • 01dd7b570a Restored haskell syntax Corey Powell 2021-06-01 14:44:03 -0500
  • 271a3922fe Merge remote-tracking branch 'upstream/master' Jakub Bartodziej 2021-06-04 13:15:57 -0400
  • 60aecabe6b Implement :before which accepts a time interval and moves the editor to the closest history state to the commit of the current time minus that interval. Current time is now by default, or the commit time if :before has just been used. Jakub Bartodziej 2021-06-04 13:13:26 -0400
  • 262c5430c6 Use git describe for version Ivan Tham 2021-06-04 23:55:39 +0800
  • f3a243c6cb Rust: Highlight crate namespace, categorize `mut` notoria 2021-06-04 09:43:27 +0200
  • c79cac3df2 Don't panic on empty file/buffer notoria 2021-06-04 09:00:38 +0200
  • c4d3fda3b2 theme: Enable style modifiers in theme.toml Ingrid Rebecca Abraham 2021-06-04 14:05:25 +0200
  • 74d657856f Rust: Highlight crate namespace, categorize `mut` notoria 2021-06-04 09:43:27 +0200
  • c9e9313fee fix: 9999x panic! because of index out of bounds use std::cmp::min(text.len_lines(), ...) to not go out of bounds ahkrr 2021-06-04 11:16:03 +0200
  • e66d1057b5 deploy: adcfcf9044 archseer 2021-06-04 08:26:32 +0000
  • adcfcf9044 Replace ^/$ with gh/gl notoria 2021-06-04 09:34:08 +0200
  • 01586c72f0 Replace ^/$ with gh/gl notoria 2021-06-04 09:34:08 +0200
  • 658c561054 deploy: 4f0e3aa948 archseer 2021-06-04 06:48:26 +0000
  • 4f0e3aa948 Implement gt/gm/gb, remap goto tYpe to gy Blaž Hrastnik 2021-06-04 15:47:29 +0900
  • f2e554d761 matchbrackets: Needs to render with the viewport offset Blaž Hrastnik 2021-06-04 15:07:43 +0900
  • 61f14885a7 restore Shafkath Shuhan 2021-06-04 00:03:47 -0400
  • 61b423425f wip Shafkath Shuhan 2021-06-03 23:55:07 -0400
  • cfec114822 wip Shafkath Shuhan 2021-06-03 23:50:59 -0400
  • 513187e9d7 Merge branch 'master' of https://github.com/helix-editor/helix into patch-01 Shafkath Shuhan 2021-06-03 23:42:52 -0400
  • 126601176e wip Shafkath Shuhan 2021-06-03 23:40:37 -0400
  • bd4552cd2b scroll: Fix the clamping Blaž Hrastnik 2021-06-04 11:36:28 +0900
  • 06d8d3f55f Try to detect language when document file path is set Blaž Hrastnik 2021-06-04 10:50:03 +0900
  • 8afd4e1bc2 Exit select mode on delete_selection Blaž Hrastnik 2021-06-04 10:30:18 +0900
  • 43b92b24d2 Show file picker when directory passed as first arg wojciechkepka 2021-06-02 16:20:41 +0200
  • b2b2d430ae Rust: Add keyword `async`, match the entire macro notoria 2021-06-04 03:01:32 +0200
  • 3815834ba8 cursor fixes Shafkath Shuhan 2021-06-03 21:51:55 -0400