Re: [Github-comments] [geany/geany] Create julia lexer and tags parser (#2584)

2021-05-20 Thread getzze
@getzze pushed 1 commit.

eb36bae9efa1ee20e3aef8a3b4f479d4b6e81040  make raw string literals list 
modificable


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/geany/geany/pull/2584/files/31bede9a57915916e1066d380925f0fef3677680..eb36bae9efa1ee20e3aef8a3b4f479d4b6e81040


Re: [Github-comments] [geany/geany] Create julia lexer and tags parser (#2584)

2021-05-20 Thread getzze
I just pushed new commits to solve conflicts.
As @elextr said, julia ctag parser has been merged upstream but from Scintilla 
it will take much longer (they only reviewed aesthetic aspects of the code so 
far).
But you can build from source applying this PR.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/pull/2584#issuecomment-845033895

Re: [Github-comments] [geany/geany] Create julia lexer and tags parser (#2584)

2021-05-20 Thread getzze
@getzze pushed 4 commits.

6400fe99fc439a48001b614bc27d2109e772f102  correct scintilla warnings
613d38bad18b36f6bbb2267642b40b2dcfabeb0e  merge conflict
8f9e59f14786d2ef5c135b768b18092c8edf2125  merge conflict
31bede9a57915916e1066d380925f0fef3677680  merge conflict


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/geany/geany/pull/2584/files/10cd4a645adbd33cb271b2d832342aeb6acc2d4b..31bede9a57915916e1066d380925f0fef3677680


Re: [Github-comments] [geany/geany] Can't see underscores on Ubuntu 20.04 (#2502)

2021-05-20 Thread elextr
@kkadhith your pasted filetypes.common has not only the `[styling]` line and 
the `line_height` line uncommented but all the comment lines are also 
uncommented.  Thats going to totally confuse the conf file reader so no 
surprise it doesn't work.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/issues/2502#issuecomment-844739865

Re: [Github-comments] [geany/geany] Can't see underscores on Ubuntu 20.04 (#2502)

2021-05-20 Thread Adhith Karthikeyan
I'm using Ubuntu 20.04 and I still have this problem. I attached my 
filetypes.common [here](https://pastebin.com/EsG6M9EU). I uncommented `styling` 
and added `line_height=1;1;`, but I still have this issue. I am using DejaVu 
Sans Mono with a font size of 11. I noticed that zooming in or increasing the 
size of the font resolves the issue, but I would like to stick to 11pt font. 

Someone suggested changing the font to Nimbus Mono PS Regular, but I really 
dislike that font. If there are any alternative fonts that don't have issues, 
let me know. 

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/issues/2502#issuecomment-844736515

Re: [Github-comments] [geany/geany-plugins] Can't activate debugger plugin Ubuntu 20.04 (#1072)

2021-05-20 Thread fei4xu
you can change the installation path by `--prefix=/usr`
```
git clone https://github.com/geany/geany-plugins.git
cd geany-plugins/
sudo apt-get install libvte-2.91-dev
./autogen.sh --disable-all-plugins --enable-debugger --prefix=/usr
make -j8
sudo make install
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany-plugins/issues/1072#issuecomment-844681774