Wilfred Hughes

Results 324 issues of Wilfred Hughes

Example bad code: ```hack class MyParent { public function __construct() {} } class MyChild extends MyParent { public function __construct() { foo(); } } ``` The quickfix should add the...

major-league-hacking

Sample bad code: ```hack class MyParent { public function foo(): void {} } class MyChild extends MyParent { // autofix: public function protected function foo(): void {} } ``` After...

major-league-hacking

Example bad code: ```hack function foo(): void { $s = "price in $usd"; } ``` The quickfix should escape the dollar sign. ```hack function foo(): void { $s = "price...

major-league-hacking

I'd like to be able to do the following refactoring: ``` python # before def foo(): bar(some_expr) # after def foo(new_param=some_expr): bar(new_param) ``` Could this be added to rope? Additional...

enhancement
help wanted
api-change

I use `]` extensively for stepping over expressions, but it treats atoms differently from lists. For example, ``` (foo |bar baz) ``` here lispy-forward moves point to the closing `)`....

I'd expected to be able to push a coloured string into another, but it loses the colour: ```rust fn main() { let mut s = String::with_capacity(5); let msg = "blue";...

Given the file: ```python foo = \ """bar """ ``` pycodestyle 2.3.1 crashes: ``` $ pycodestyle demo.py Traceback (most recent call last): File "/users/is/whughes/pyenvs/research3/bin/pycodestyle", line 11, in sys.exit(_main()) File "/users/is/whughes/pyenvs/research3/lib/python2.7/site-packages/pycodestyle.py",...

``` $ npx --no-install "[email protected]" --version npx: installed 5 in 1.49s commonmark.js 0.28.1 $ npx --no-install "[email protected]" --version npx: installed 5 in 1.152s commonmark.js 0.28.1 $ npx --version 9.7.1 ```...

question

This takes the existing implementation of relative links, and rebases it on master (to fix the conflicts). It also fixes the incorrect closing tag issue mentioned in 996655c3d8c0eecff622c8d82292ca2d2d133380. Fixes #7.

enhancement
invalid

Currently, `company-files` assumes a path that contains slashes. I'd like to complete on the files in the local directory too, even if there isn't a `/` or `./` prefix. Is...