Muah

Results 209 comments of Muah

btw i think the LS should be restarted afterward, ex. changeing `worse_reflection.stub_dir` then runing the `phpactor index:build --reset` from the project root, doesnt update the LS until u restart the...

> `Reload window` from the command palette will restart the LSP server ah yes thats what i meant, hopefully the new command can do that internally without the need to...

> no, you will always need to restart the LSP after changing the config maybe we can add `executeCommand('workbench.action.reloadWindow')` after `languageClient.sendRequest('indexer/reindex', {"soft": false});` has finished. > you'd see that if...

> and passes all arguments via $@ btw phpunit a config call `phpunit.args` to do similar thing, is that what u mean ? > Your IDE and PhpActor will run...

ok, i did that but honestly thats too much work because - now i have to install phpactor as a composer dep per project instead of global as i have...

maybe like this ``` "macros": { "addSemicolonToLineEnd": [ "cursorEnd", { "command": "type", "args": { "text": ";" } } ], "addCommaToLineEnd": [ "cursorEnd", { "command": "type", "args": { "text": "," }...

what u need is https://github.com/geddski/macros/pull/13

what about ``` "customprintr": { "prefix": "customprintr", "body": [ "\t \\$printMe = ${TM_SELECTED_TEXT}; " ], "description": "Insert custom print_r" } ``` ``` "macros": { "printr": [ "editor.action.smartSelect.grow", { "command": "editor.action.insertSnippet",...

@lixinliang maybe expand all folders when user start typing, and when the field is empty collapse folders to its prev state.