vicencb
vicencb
Hi, when combining two patches where the first one creates a new file ```diff --- /dev/null +++ b/txt @@ -0,0 +1,3 @@ +a +b +c ``` and the second one...
%D (dirname) is the counterpart of %b (basename) It is useful for recreating the source directory structure inside the build directory.
Hi, this script reproduces the issue: ```bash #!/bin/bash -ve TMPDIR=$(mktemp -d) cd ${TMPDIR} tup --version tup init cat Tupfile : |> echo '#define number 7' > %o |> a.h :...
When indenting a selection and the selection starts at the first column, it is expected that the updated selection start stays at the first column. This patch fixes this. N.B.:...
This is a first step towards implementing code folding #618. There are two parts involved: 1. Parsing the file. 2. Hiding the collapsed lines. This patch implements part 2, although...
Please, explain the behaviour of this code: ```verilog module test(); integer i; integer j; always @(i, j) $display("[%0t] B %0d %0d", $time, i, j); initial begin for(i = 1; i...
Hi, i've got a desktop panel that uses SDL. SDL does not support layer-shell https://github.com/libsdl-org/SDL/issues/7262 So, i am setting labwc with: `` Now i can manually drag the panel inside...
Makefiles also support this: https://www.gnu.org/software/make/manual/html_node/Rule-Syntax.html `targets : attributes : prerequisites ; recipe`
Similar to .PRECIOUS in a makefile, but not exactly the same: https://www.gnu.org/software/make/manual/html_node/Special-Targets.html The use case is: Given the knitfile: ```lua return b { $ knit-1.1.1.tar.gz : wget https://github.com/zyedidia/knit/archive/refs/tags/v1.1.1.tar.gz -O $(output)...
Like :=, this is just syntactic sugar to make makefile writers more comfortable ```LUA -- declare string local flags = '-Wall' -- declare table local src = {} -- when...