Eugene Sharygin
Eugene Sharygin
`color-identifiers:refresh` hangs on buffers with circular structures. Steps to reproduce: 1. Create an `emacs-lisp-mode` buffer. 2. Add text containing [reader syntax](https://www.gnu.org/software/emacs/manual/html_node/elisp/Circular-Objects.html) for a circular structure: ```lisp (-take 5 '#0=(1 ....
This patch passes `allowHashBang` option to `acorn` so that unix shebangs don't cause syntax errors. ``` js #!/usr/bin/env node // ... ```
We can do better, namely in O(log n).
Hi, Function `saveComment` in this chapter is defined as a composition of functions, one of which is `getValue('#comment')`. However, `getValue('#comment')` is not a function according to its type specification: ```js...
Github Flavored Markdown has a nice [syntax for tables](https://help.github.com/articles/github-flavored-markdown/#tables), but the app does not support it. ### Example | Centered | Left aligned | Right aligned | Not aligned |...
I'm using e2ansi on [this file](https://github.com/v8/v8/blob/925a2006f503691252cca74c7ef15f8b82419b7b/src/crankshaft/hydrogen.cc). It is not the largest file, but this error pops up: ``` $ e2ansi-cat hydrogen.cc Args out of range: #, 22542, 495376 $ emacs...
Currently each page handler (`random`, `dribble`, `github`) is called on every page. This can lead to bugs (and [did](https://github.com/tevko/practice/issues/33) [so](https://github.com/tevko/practice/pull/32#issuecomment-126853676) in the past) because some handlers may not work on...
This PR defines `BigInt` type. Since it requires ES2020, update ESLint configuration for testing. This triggered `comma-dangle` in a bunch of places for me, so I fixed those, too. The...
Why is it a good idea? - `-` is a special argument across multiple Unix commands and usually stands for stdin (`echo hello |cat - /another/file`); - negative numbers are...
V8 engine (and hence the Node) can provide access to its internal C++ runtime functions if `--allow-natives-syntax` flag is set (or configured at runtime with [thlorenz/v8-flags](https://github.com/thlorenz/v8-flags)). The special syntax for...