meson-mode icon indicating copy to clipboard operation
meson-mode copied to clipboard

Emacs major mode for the Meson build system

Results 2 meson-mode issues
Sort by recently updated
recently updated
newest added

The [Meson Style Guide](https://mesonbuild.com/Style-guide.html) contains this piece of code: ``` sources = files([ 'aaa/a1.c', 'aaa/a2.c', 'bbb/subdir1/b1.c', 'bbb/subdir2/b2.c', 'bbb/subdir10/b3.c', 'bbb/subdir20/b4.c', 'bbb/b5.c', 'bbb/b6.c', 'f1.c', 'f2.c', 'f10.c', 'f20.c' ]) ``` When I copy...

The idea is to have a simple way to open the file or folder at point/in the current line. Something like the following but that supports variables: ```elisp (defun nx/meson-open-at-point...