Yang, Ying-chao

Results 18 comments of Yang, Ying-chao

> If you run the compiler driver command in a different directory, it will likely fail. The `-working-directory` option gives a hint. probably, may be we need to set `default-directory`...

sure, will do it when I have time. :) > 在 2017年3月16日,上午10:45,Børge Svingen 写道: > > Thank you. > > Can you please fix this so that the tests still...

Sorry that I failed to setup testing environment, so can't fix the tests.. I put my changes along with David's pull request in this file: https://github.com/yangyingchao/tubo-env/blob/master/.emacs.d/site-lisp/utils/sql-indent-mode.el.

Here is my configuration for using `neocmakelsp` with `eglot` in `cmake-ts-mode`: ``` emacs-lisp (use-package cmake-ts-mode :config (add-hook 'cmake-ts-mode-hook (defun setup-neocmakelsp () (require 'eglot) (add-to-list 'eglot-server-programs `((cmake-ts-mode) . ("neocmakelsp" "--stdio"))) (eglot-ensure))))...

You can add multiple waybar-disk, with "#" sign and additional id, like: ``` json { "modules-right": [ "disk", "disk#2" ], "disk": { "path": "path-1", "interval": 30, "format": "{percentage_free}% free on...

Something is wrong... ``` $ ldd coreutils ./coreutils: error while loading shared libraries: /lib64/libc.so: invalid ELF header ```

IMO, statically linked apps can get rid of the glibc version, meaning we can run them on operating systems like CentOS 7, which has a very old version of glibc.

> > Something is wrong... > > ``` > > $ ldd coreutils > > ./coreutils: error while loading shared libraries: /lib64/libc.so: invalid ELF header > > ``` > >...