Skip to content

Commit bf4ec0c

Browse files
committed
fix: disable spell check on native buffers
1 parent 082f81e commit bf4ec0c

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

lua/claudecode/terminal/native.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,7 @@ local function open_terminal(cmd_string, env_table, effective_config, focus)
135135
winid = new_winid
136136
bufnr = vim.api.nvim_get_current_buf()
137137
vim.bo[bufnr].bufhidden = "hide"
138+
vim.bo[bufnr].spelloptions = "noplainbuffer" -- disable spell check
138139
-- buftype=terminal is set by termopen
139140

140141
if focus then

0 commit comments

Comments
 (0)