Ludovic Fernandez

Results 21 comments of Ludovic Fernandez

Hello ! I was looking for CLI Markdown readers and found a few (MDLess, MDP, this one, and the one I'm about to recommend), as well as a simple command...

This is years late but the answer might help some people: My solution to making sure my environment isn't overridden by plugins is to do my setting up in `conf.d`...

I have this in my `~/.config/nvim/coc-settings.json` and no error. Are you guys sure you have the latest versions of your stuff ? ```json "java.configuration.runtimes": [ { "name": "JavaSE-17", "path": "/usr/lib/jvm/java-17-openjdk",...

I came here for the exact same reason. It would be nice to have something like a `%USERINPUT%` variable that prompts for filling on template insertion. I haven't looked into...

Bit late to the party but here: I'm using [`gdb-nvim`](https://github.com/sakhnik/nvim-gdb) in conjunction with `gdb-dashboard` and it works flawlessly ! It's got bonus points for supporting several other debuggers too. The...

Hey there, I'm not sure if this is the right thread, but I've been struggling to make @xiyaowong's plugin work. Is it even possible using Plug ? -- I dont...

That didn't work. The `do` option is only to perform certain commands after install/upgrade so I tried fully reinstalling and it didn't work either.

I had no idea you could run Lua right inside `.vim` files. o.o Anyway, doing that broke everything and CoC with it BUT... Despite my abysmal knowledge of Lua, I...

> workaround: > > ```json > { > "imports": { > "https://dev.jspm.io/npm:@jspm/core@1/nodelibs/timers.js": "https://ga.jspm.io/npm:@jspm/[email protected]/nodelibs/deno/timers.ts", > "https://dev.jspm.io/[email protected]": "https://ga.jspm.io/npm:[email protected]/inherits.js", > }, > "scopes": { > "https://ga.jspm.io/": { > "util": "https://ga.jspm.io/npm:@jspm/[email protected]/nodelibs/deno/util.ts" > } >...

The best here would be to have completion be aware of shorthands available for commands. It should show `w` just like it sows `write`. Also I found out that you...