Hey! I've built a custom @neovim.io URL handler to open a file by clicking on its filename in the stack trace printed by @elixir-lang.org Phoenix. Was quite a journey โ๏ธ
nickgnd.com/posts/2025/0...
#elixirlang #phoenix #neovim
Hey! I've built a custom @neovim.io URL handler to open a file by clicking on its filename in the stack trace printed by @elixir-lang.org Phoenix. Was quite a journey โ๏ธ
nickgnd.com/posts/2025/0...
#elixirlang #phoenix #neovim
@antirez.bsky.social hai parlato spesso di @karpathy.bsky.social nei tuoi video. L'ultimo suo talk pubblicato un po' di ore fa merita a mio parere โ๏ธ
www.youtube.com/watch?v=LCEm...
Thanks! An alternative approach using neovim autocommands:
```
vim.api.nvim_create_autocmd({ 'BufNewFile', 'BufRead' }, {
pattern = '/private/**/tmp.*.erl',
callback = function()
vim.bo.filetype = 'elixir'
end,
})
```
That's a game changer! Thanks for all the work! โค๏ธ #elixirlang
Uh, thanks for reaching out! Glad that helped you ๐