Oli

Results 164 comments of Oli

My current `~/.tern-config` is: ``` { "plugins": { "node": {}, "es_modules": {} }, "libs": [ "ecma5", "ecma6" ], "ecmaVersion": 6 } ``` Not sure exactly what it does but once...

Indeed. Trying to make it work with tmux seems like a bit of a PITA. Another option would be to see if a flag can be passed to `open -a...

Looks like another way would be to chose a profile called "kube-solo" if it exists and otherwise use the default profile: https://www.iterm2.com/documentation-scripting.html. That way, I could create a "kube-solo" profile...

Oh, looks like there will be a new option in iTerm to "disabled text at start when opening a script" https://gitlab.com/gnachman/iterm2/issues/5288. 👍

For what it's worth, I've written a similar module for Express 4.x: https://github.com/olalonde/resourcemap

@TylerBrock FWIW, I haven't felt the need to use express-resource anymore with the new Router functionality. It's quite easy to setup resource like routes. For example: ``` javascript function router()...

```lua keymap(bufnr, "n", "la", "lua vim.lsp.buf.code_action()", opts) keymap(bufnr, "v", "la", "lua vim.lsp.buf.range_code_action()", opts) ```

A Go library would be cool. And it could be wrapped into a no-dependencies CLI.

@fentas great. Btw, I think `TUS_CHUNCK_SIZE` should be `TUS_CHUNK_SIZE`.

I don't know how to do it but PRs are welcomed :)