Re: [Github-comments] [geany/geany-plugins] Plugin Request: Language server protocol (#1012)

2020-11-29 Thread fightthepower
@KhazAkar Thank you for the links but all of those projects are not updated for the past 5 years. I am using the latest version of geany with gtk3 and I am not sure whether they will work well with the new version of geany. are you using these plugins, particularly, gycm with the latest

Re: [Github-comments] [geany/geany] no module found issue (#2631)

2020-10-24 Thread fightthepower
@elextr sorry for asking this question here, I dont want to open a thread for this question. I know that geany 1.37 is releasing tomorrow, I am currently running gtk2 enabled geany 1.36. I understand that from 1.37 gtk3 is default. If I installed this new version of 1.37 with gtk3 a) will

Re: [Github-comments] [geany/geany-plugins] Plugin Request: Language server protocol (#1012)

2020-10-06 Thread fightthepower
Is there any plan on implementing it? This could be one of the most important plugin for a code writer and 100 languages already provides LSP support. Can I ask when the new version is going to release? current version is an year old. -- You are receiving this because you are subscribed to

[Github-comments] [geany/geany-plugins] Plugin Request: Language server protocol (#1012)

2020-10-05 Thread fightthepower
There is already [a thread in main geany issues](https://github.com/geany/geany/issues/2184) but I am starting a new thread here. [LSP](https://langserver.org/) is a protocol used for providing programming language-specific features such as syntax highlighting, symbol's definition, code

Re: [Github-comments] [geany/geany] Instantaneous reload of changed files on focused tab (#2603)

2020-10-02 Thread fightthepower
Ok thanks now I got it, I would personally love a direct button in the toolbar which when clicked formats my whole code without a need to selecting the lines and then sending it terminal. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view

Re: [Github-comments] [geany/geany] Instantaneous reload of changed files on focused tab (#2603)

2020-10-02 Thread fightthepower
Closed #2603. -- 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/2603#event-3836175573

Re: [Github-comments] [geany/geany] Instantaneous reload of changed files on focused tab (#2603)

2020-10-02 Thread fightthepower
I already have a similar set up with `Build->Set Build Commands` , it works and formats the code in the disk. But the issue is the changes to the file is not reflected in the opened file in geany unless I interact with the menu. -- You are receiving this because you are subscribed to this

Re: [Github-comments] [geany/geany] Instantaneous reload of changed files on focused tab (#2603)

2020-09-30 Thread fightthepower
Can you give me a simple example for that. I really don't get the piping method. -- 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/2603#issuecomment-701733761

[Github-comments] [geany/geany] Instantaneous reload of changed files on focused tab (#2603)

2020-09-30 Thread fightthepower
I am using the latest version 1.36 of geany and I am using custom build commands to format my files, `rustfmt "%f"`. I have enabled all the file saving options on reload available under preference>various except file.show_keep_edit_history_on_reload_msg. The problem is after formatting my

Re: [Github-comments] [geany/geany] [Feature Request] A way to integrate language specific tools in geany with buttons in toolbar. (#2587)

2020-09-16 Thread fightthepower
Thank you after a little search found out Set Build Commands already provides the same thing. But still have two problems, 1) Set Build Commands only allow fewer commands (Rust:3, Independent:4 and execute:2. Presently all of my commands are full) 2) There is no dedicated one click button for

[Github-comments] [geany/geany] [Feature Request] A way to integrate language specific tools in geany with buttons in toolbar. (#2587)

2020-09-16 Thread fightthepower
Rust language provides many tools to make programming easy and finding bugs faster. Some of the tools I personally use are rustfmt, clippy and miri. Right now when I have to run these tools, I have to execute these from command line. Take `rustfmt` for example after formatting the code using

[Github-comments] [geany/geany] Enable all the editor functions in splitted window? (#2537)

2020-06-27 Thread fightthepower
I am using the plugin `Split Window` to view files in two different editor windows. Its really a very helpful plugin but it lacks many functionality of the main editor window. When we open a file in splitted window, we - Can't use plugins or most plugins doesn't work properly like AutoClose,

[Github-comments] [geany/geany] Straight white line in geany editor under dark mode (#2514)

2020-05-24 Thread fightthepower
I am using Ubuntu and the latest 1.36 geany. My system is in dark mode and uses a dark theme in geany editor. In my geany editor there is a straight white line on the right of the screen. It only appears in geany editor and if I change the size of the editor the line also changes. Functionally

[Github-comments] [geany/geany] Different colors for objects, methods and attributes? (#2441)

2020-02-18 Thread fightthepower
Consider this python code ``` class example: def __init__(self): self.hello = "Hello" def world(self): return "World !" e = example() print(e.hello) print(e.world()) ``` I am using a Tango color scheme and currently all of these ``` e = example() e.hello e.world() ```

Re: [Github-comments] [geany/geany] custom font, foreground/background color for compiler tab in message (#2427)

2020-01-27 Thread fightthepower
Closed #2427. -- 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/2427#event-2984338570

Re: [Github-comments] [geany/geany] custom font, foreground/background color for compiler tab in message (#2427)

2020-01-26 Thread fightthepower
I used to use this PPA for installing geany but It will not update as fastly as the new release of geany. Now I install geany from the tar files directly from the download section when a new version of geany is released. The second thing is some plugins like `webhelper` might not work with PPA

Re: [Github-comments] [geany/geany] custom font, foreground/background color for compiler tab in message (#2427)

2020-01-25 Thread fightthepower
@elextr It seems gtk3-dev cannot be installed in my system. I found a work around; I removed compile code from `Set build commands` and added compile and run command in `Run` with `&&` connecting the two commands. Now I get the error in terminal which is more visible. -- You are receiving

Re: [Github-comments] [geany/geany] custom font, foreground/background color for compiler tab in message (#2427)

2020-01-25 Thread fightthepower
@elextr its 1.36 @codebrainz yep its giving me this error `No package 'gtk+-3.0' found`, tried installing gtk3-dev using this command `sudo apt install libgtk-3-dev` but returns unmet dependency error. When I tried to install those unmet dependencies its giving another error for unmet

Re: [Github-comments] [geany/geany] custom font, foreground/background color for compiler tab in message (#2427)

2020-01-25 Thread fightthepower
This is the output ` GTK 2.24.30, GLib 2.48.2`. How can I solve this problem? I believe in ubuntu gtk2 and gtk3 are both installed as default ``` >>dpkg -l libgtk[0-9]* | grep ^i libgtk2.0-0:amd64 libgtk2.0-bin libgtk2.0-cil libgtk2.0-common libgtk2.0-dev >>dpkg -l libgtk-[0-9]* | grep ^i

[Github-comments] [geany/geany-plugins] While editing big html files Pair Tag Highlighter plugins slows geany down (#934)

2019-11-21 Thread fightthepower
Basically this https://github.com/geany/geany/issues/2401 I re reporting this issue here. -- 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/934

Re: [Github-comments] [geany/geany] Geany becomes slow and unresponsive when editing tags of large html files? (#2401)

2019-11-21 Thread fightthepower
@b4n @LarsGit223 Yep it was caused by a plugin named **Pair Tag Highlighter** , geany started acting normally when I disabled this plugin. I will report this plugin in https://github.com/geany/geany-plugins -- You are receiving this because you are subscribed to this thread. Reply to this

[Github-comments] [geany/geany] Geany becomes slow and unresponsive when editing tags of large html files? (#2401)

2019-11-21 Thread fightthepower
I have a 2GB memory system and using geany 1.36 with web helper disabled. I am tryning to create a webpage and while editing some tags for a web page I noticed that geany becomes slow and unresponsive. In my case its this tag `` , the more I edit these kind of tags the more geany becomes

[Github-comments] [geany/geany] Need comment, uncomment tools in toolbar (#2381)

2019-10-24 Thread fightthepower
This is a feature request, currently if we have to comment or uncomment some lines of code we have to go to Format under Edit section. It would be easier if we can access the comment, uncomment tools in our custome toolbar itself. -- You are receiving this because you are subscribed to this

Re: [Github-comments] [geany/geany-themes] Can't view properly whitespace or indendation guides in any of the dark themes except solarized(Dark) (#23)

2019-10-24 Thread fightthepower
Other than the elextr's method, "white_space" is another settable value in colour scheme for viewing indent space. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub:

Re: [Github-comments] [geany/geany] How to enable virtualenv bash in VTE? (#2210)

2019-07-07 Thread fightthepower
I didnt get this ``` Actually it will accept arguments separated by spaces I think, but its still spawned directly, not run by a shell, since its being used as a shell. ``` I tried with spaces as well `/bin/bash workon venv` but didn't work -- You are receiving this because you are subscribed

[Github-comments] [geany/geany] How to enable virtualenv bash in VTE? (#2210)

2019-07-06 Thread fightthepower
I do coding in virtualenv and at present I access my virtualenv in VTE using `virutalenvwrapper` with the command `workon ENV`. Instead of this I want to directly load the virtualenv bash in VTE everytime I open geany. I know how to get the virtualenv's python but its the bash I am after. I

Re: [Github-comments] [geany/geany] How to hide a particular folder from history in geany? (#2194)

2019-06-16 Thread fightthepower
Closed #2194. -- 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/2194#event-2416433803

Re: [Github-comments] [geany/geany] How to hide a particular folder from history in geany? (#2194)

2019-06-16 Thread fightthepower
I saw the [files] section in geany.conf but I have to manually remove those histories. I want to know if an inbuit system or plugin available for this task. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub:

[Github-comments] [geany/geany] How to hide a particular folder from history in geany? (#2194)

2019-06-16 Thread fightthepower
I am coding an important personal project and I dont want anything from this particular folder or its content to be seen. Currently geany remembers our files in **recent files** and also while freshly opening geany. I dont want this for the files in a particular folder but wants to retain this

Re: [Github-comments] [geany/geany-plugins] Send Line to Terminal (#874)

2019-06-02 Thread fightthepower
Closed #874. -- 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/874#event-2383732649

[Github-comments] [geany/geany] Send Line to Terminal (#2174)

2019-06-02 Thread fightthepower
I use geany for python programming with vte enabled. I regularly use `Send Selection to Terminal` for my work and I find it most helpul for debugging my code. `Send Selection to Terminal` works every time except the Indented lines (eg:`print('world')`) where it result in an

[Github-comments] [geany/geany-plugins] Send Line to Terminal (#874)

2019-06-02 Thread fightthepower
I use geany for python programming with vte enabled. I regularly use `Send Selection to Terminal` for my work and I find it most helpul for debugging my code. `Send Selection to Terminal` works every time except the Indented code (eg:`print('world')`) where it result in a `IndentationError`.

Re: [Github-comments] [geany/geany] Publish 1.34 package for Ubuntu (#2030)

2019-03-18 Thread fightthepower
@dandv @hyperair Can't seem to install geany-plugins `sudo apt-get install geany-plugins` ``` The following packages have unmet dependencies. geany-plugins : Depends: geany-plugin-git-changebar (>= 1.34+dfsg-1~14.04) but it is not going to be installed E: Unable to correct problems, you have

Re: [Github-comments] [geany/geany] Publish 1.34 package for Ubuntu (#2030)

2019-03-12 Thread fightthepower
Sorry didn't saw both of your comments. @hyperair I think you have unintentionally added 4 more packages of geany and geany-plugins for 14.04 instead of other versions of ubuntu in the [PPA](https://launchpad.net/~geany-dev/+archive/ubuntu/ppa) geany | 1.34.1-1~14.04 (Newer version available)

Re: [Github-comments] [geany/geany] Publish 1.34 package for Ubuntu (#2030)

2019-03-10 Thread fightthepower
@hyperair Can you add **WebHelper** to the plugins. In 1.33 it was not included in PPA -- 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/2030#issuecomment-471391468

Re: [Github-comments] [geany/geany-themes] Can't view properly whitespace or indendation guides in any of the dark themes except solarized(Dark) (#23)

2019-03-03 Thread fightthepower
Closed #23. -- 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-themes/issues/23#event-2176900604

[Github-comments] [geany/geany-themes] Can't view properly whitespace or indendation guides in any of the dark themes except solarized(Dark) (#23)

2019-03-03 Thread fightthepower
As the title say; can't view properly whitespace or indendation guides in none of the dark themes except solarized(Dark). The only way to see those is by selecting the codes. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on

Re: [Github-comments] [geany/geany] IndentationError in python (#2098)

2019-03-03 Thread fightthepower
I read somewhere that geany devs are planning for a python-ide plugin which meant to solve this kind of problem in geany. Any idea about this. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub:

[Github-comments] [geany/geany] IndentationError in python (#2098)

2019-03-03 Thread fightthepower
I really love geany because its light weight and fast for writing python codes but I really hate how it handles indentation. When I send pyton code to vte **send selection to terminal** some times it throws **IndentationError: unexpected indent**. A simple example would be this function. ```