forked from niuiic/blink-cmp-rg.nvim
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
WIP: display highlighting for files without treesitter parsers
For now, this only works locally using this branch in blink: Saghen/blink.cmp#650
- Loading branch information
1 parent
24c7b5f
commit 120284f
Showing
11 changed files
with
338 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
5 changes: 5 additions & 0 deletions
5
integration-tests/test-environment/config-modifications/use_manual_mode.lua
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
local blink_config = require("blink.cmp.config") | ||
|
||
-- prevent showing completions automatically so that we can test invoking them | ||
-- manually | ||
blink_config.sources.default = { "buffer" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
local line_1 = "This is line 1" | ||
local line_2 = "This is line 2" | ||
local line_3 = "This is line 3" | ||
local line_4 = "This is line 4" | ||
local line_5 = "This is line 5" | ||
local line_6 = "This is line 6" | ||
local line_7 = "This is line 7" | ||
local line_8 = "This is line 8" | ||
local line_9 = "This is line 9" | ||
local line_10 = "This is line 10" | ||
local line_11 = "This is line 11" | ||
local line_12 = "This is line 12" | ||
local line_13 = "This is line 13" | ||
local line_14 = "This is line 14" | ||
local line_15 = "This is line 15" | ||
local line_16 = "This is line 16" | ||
local line_17 = "This is line 17" | ||
local line_18 = "This is line 18" | ||
local line_19 = "This is line 19" | ||
local line_20 = "This is line 20" |
Oops, something went wrong.