Daniel Jenson

Results 46 comments of Daniel Jenson

Yes, they are in the vscode format

Yes, previously I used: ```lua ["L3MON4D3/LuaSnip"] = { config = function() require("luasnip").config.set_config({ history = true, updateevents = "TextChanged,TextChangedI", }) require("luasnip/loaders/from_vscode").lazy_load() require("luasnip/loaders/from_vscode").lazy_load({ paths = "~/.config/snippets" }) end, }, ```

`echo g:luasnippets_path` yields `~/.config/snippets`, and here is my custom `init.lua` and `plugins/init.lua` `init.lua`: ```lua -- REMEMBER TO RUN :PackerSync or :PackerCompile after editing -- global options vim.g.mapleader = ";" vim.g.luasnippets_path...

`package.json` ```json { "name": "custom-snippets", "contributes": { "snippets": [ { "language": [ "tex", "plaintex", "markdown" ], "path": "tex-math.json" }, { "language": [ "tex", "plaintex", "markdown" ], "path": "tex-stat.json" }, {...

Closing, it was due to an errant comma in the luasnips `tex-math.json`

Second this, it would be great because I often write latex in markdown with mathjax

Are there any plans to fix this? I use bspwm and love this, but it gets quite annoying for zoom / watching videos to have my bars not going into...

Sadly, I'm not sure. But thank you for all the great work! In the interim, here is my hack for bspwm ```bash bspc subscribe node_state | while read -r _...

![Screenshot from 2020-02-24 19-19-08](https://user-images.githubusercontent.com/4793438/75212056-9784bd80-573a-11ea-9848-c5c0fda085d8.png) I'm getting 401s but the networkError object doesn't resemble any of those in the documentation: https://www.apollographql.com/docs/link/links/http/#errors. I'm using apollo-link-error 1.1.12.

Hm, this doesn't seem to be working; my coc-settings.json has: ``` { ... "python.formatting.provider": "yapf", "coc.preferences.formatOnSaveFiletypes": ["py"] ... } ``` And I still have to manually call :Format for it...