We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent edd3c41 commit b5457a9Copy full SHA for b5457a9
2 files changed
CHANGELOG.md
@@ -50,6 +50,8 @@
50
- Use `token.location.range` and `token.range` fallback when selection range is
51
not provided.
52
([#105](https://github.com/hedyhli/outline.nvim/pull/105))
53
+- Neovim 0.11 support
54
+ ([#131](https://github.com/hedyhli/outline.nvim/pull/131))
55
56
## v1.0.0
57
README.md
@@ -1154,7 +1154,7 @@ other filetypes.
1154
```lua
1155
symbols = {
1156
icon_fetcher = function(k, buf)
1157
- -- Use nvim_buf_get_option(bufnr, 'ft') for nvim 0.7 users
+ -- Use nvim_buf_get_option(buf, 'ft') for nvim 0.7 users
1158
local ft = vim.api.nvim_get_option_value("ft", { buf = buf })
1159
if ft == 'markdown' then
1160
return ""
0 commit comments