0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【忘備録】Wxxx: Ignoring swapfile from Nvim process <PID>の解消方法

Posted at

動機

楽しくneovimで開発していたら急にこんなエラーが出てきて困った
ソースファイルが見つからないらしい。
急に楽しくなくなった。

tsserver: 1: <semantic> TypeScript Server Error (4.9.5)
Could not find source file:.
Error: Could not find source file: .
    at getValidSourceFile
    at Object.getDocumentHighlights 
    at Session.getDocumentHighlights 
    at Session.handlers.ts.Map.ts.getEntries._a.<computed> 
    at Session.executeWithRequestId 
    at Session.executeCommand 
    at Session.onMessage 
    at process.<anonymous> 
    at process.emit 
    at emit
    at process.processTicksAndRejections 

しかも、エラーが発生するファイルと発生しないファイルがあってイミフだった。

よく見てみると、エラーがでるファイルはエラーが起こる直前に

Wxxx: Ignoring swapfile from Nvim process <PID>

の警告がされていた。

なので、このPIDのswapfileを削除すればエラー解消。
だけど、.swpいらねえなと思って次の設定をしました。

解決

-- swapfileを作成しないように設定
vim.opt.swapfile = false

上記はluaでの設定。vimscriptだと

set noswapfile

結論

私、swapfileだいっきらあい
だって意味ないもおん

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?