Gauthier Fleutot Östervall
Gauthier Fleutot Östervall
The documentation made me expect `dtrt-indent` to adapt `indent-tabs-mode` to "the right thing": ``` ;; `indent-tabs-mode' Setting ;; ;; For determining hard vs. soft tabs, dtrt-indent counts the number of...
After `ag-project`, the result window has the cursor on the first result Expected behavior: - `M-g n` select the first result and jumps to the row in the relevant buffer....
This file structure: ``` $ ls mycode.c other_file.c $ git init Initialized empty Git repository in /home/gauthier/tmp/dumb/.git/ $ git add mycode.c && git commit -m"Init" [master (root-commit) 5271e5a] Init 1...
With this init file `~/tmp/magit-debug/init.el`: ``` (require 'package) (setq package-enable-at-startup nil) (add-to-list 'package-archives '("melpa" . "http://melpa.org/packages/")) (add-to-list 'package-archives '("gnu" . "http://elpa.gnu.org/packages/")) (add-to-list 'package-archives '("melpamilk" . "http://melpa.milkbox.net/packages/")) (package-initialize) (require 'magit) ```...
Uncrustify_d-0.74.0 I just upgraded from 0.72. I am using Contiki OS, which uses pre-processor macros to mangle function names (and more magic) to turn them into processes and threads. The...
Uncrustify 0.72, this: ``` if ((asdf && qwer) || zxcv ) { } ``` becomes this: ``` if ((asdf && qwer) || zxcv ) { } ``` After the first...
[//]: # " If the issue is connected to existing Uncrustify options please, if possible, add the" [//]: # " following information to ease up the process:" [//]: # "...
Discovered with uncrustify 0.72, recreated with tip of master `Uncrustify-0.79.0-99-66e880824`. Source file `a.c`: ```c void main(void) { if (asdfasdfasdfasdfasdfasdfasdfasdfasdfasdf && qwerqwerqwerqwerqwerqwerqwerqwerqwer) { } } ``` Minimal uncrustify config: ``` #...
Uncrustify 0.78.1. Source (line with `&&` has tabs only): ```c void main(void) { do { a(); } while (true && true ); } ``` Same, showing whitespace:  Config file:...
Indentation of named struct members in a compound literal, that is an argument to a function call, missing. It also seems to confuse the indentation of the closing parens of...