First time here? Check out the FAQ!

Joril's profile - activity

2023-07-29 09:42:59 -0500 received badge Popular Question (source)
2023-07-29 09:42:59 -0500 received badge Famous Question (source)
2023-07-29 09:42:59 -0500 received badge Notable Question (source)
2023-02-16 10:04:39 -0500 received badge Famous Question (source)
2023-02-16 10:04:39 -0500 received badge Notable Question (source)
2023-02-16 10:04:39 -0500 received badge Popular Question (source)
2023-02-11 09:23:10 -0500 marked best answer Search skipping comments

Hello,

Is it possibile to make "search in files" show results ignoring comments?

2023-02-10 06:45:13 -0500 commented answer Search skipping comments

I see, maybe it would be a nice feature to add? :)

2023-02-10 03:29:03 -0500 asked a question Search skipping comments

Search skipping comments Hello, Is it possibile to make "search in files" show results ignoring comments?

2022-05-11 05:14:51 -0500 received badge Famous Question (source)
2022-04-12 09:01:30 -0500 commented answer Graphical Profiler

Any update on the "code coverage" support?

2022-03-14 11:03:20 -0500 marked best answer Search on current selection in current file

The "search in files" toolbar group has a very useful icon, "search on current selection using the Search in Files tool", that shows every occurrence inside the project of the selected string.
Is there a way to have a "search on current selection" limited only to the current file?
(I'm on Wing 7.2.9)

2022-03-10 10:09:54 -0500 commented answer Search on current selection in current file

Nice, thanks! There's a little side-effect though: this changes the "look in" combo, so when I use "search on current se

2022-03-10 09:32:22 -0500 edited question Search on current selection in current file

Search on current selection in current file The "search in files" toolbar group has a very useful icon, "search on curre

2022-03-10 09:32:22 -0500 received badge Editor (source)
2022-03-10 09:31:39 -0500 asked a question Search on current selection in current file

Search on current selection in current file The "search in files" toolbar group has a very useful icon, "search on curre

2022-01-22 04:56:34 -0500 received badge Popular Question (source)
2022-01-22 04:56:34 -0500 received badge Notable Question (source)
2021-12-16 07:48:14 -0500 commented answer Find text inside Debug I/O tool

Didn't notice the mini-search feature, thanks! (CTRL+U on my system)

2021-12-16 07:48:13 -0500 marked best answer Find text inside Debug I/O tool

Hi everyone!

Is it possible to search for text inside the Debug I/O tool, without having to cut and paste everything to another file?

Thanks!

2021-12-16 07:30:40 -0500 asked a question Find text inside Debug I/O tool

Find text inside Debug I/O tool Hi everyone! Is it possible to search for text inside the Debug I/O tool, without havin

2021-12-16 07:24:59 -0500 received badge Famous Question (source)
2021-12-16 07:24:59 -0500 received badge Notable Question (source)
2021-10-08 01:39:09 -0500 commented answer Wing not responsive for first few minutes of use

For the record: not as fast as I'd like, but faster than before :)

2021-10-07 08:01:14 -0500 received badge Necromancer ( source )
2021-10-07 01:49:29 -0500 received badge Popular Question (source)
2021-10-07 01:49:29 -0500 received badge Famous Question (source)
2021-10-07 01:49:29 -0500 received badge Notable Question (source)
2021-10-07 01:48:45 -0500 received badge Famous Question (source)
2021-10-07 01:48:08 -0500 answered a question Wing not responsive for first few minutes of use

By checking ide.log I was able to pinpoint a slowness in scanning the cu2qu library. I issued a pip uninstall cu2qu and

2021-10-07 01:38:09 -0500 received badge Enthusiast
2021-04-24 02:33:07 -0500 marked best answer Source analysis with custom wxPython

Hi everyone!
I'm writing a program using a custom installation of wxPython 4.1.0 on Debian 10 (Devuan actually). The wx directory is under /opt/wxPython-4/wx, how do I tell WingIDE to fetch its sources from there? Whenever I use "go to selected symbol definition" it points me to the official Debian wxPython 3 path (/usr/lib/python/dist-packages/wx-3.0-gtk/wx).
If it's relevant, I'm pointing Python to use /opt/wx-Python-4 by inserting it at the beginning of sys.path.
(I'm using WingIDE Pro 7.2.9.1)

2021-04-17 08:31:07 -0500 asked a question Source analysis with custom wxPython

Source analysis with custom wxPython Hi everyone! I'm writing a program using a custom installation of wxPython 4.1.0 o

2019-06-19 14:54:10 -0500 received badge Notable Question (source)
2019-06-19 14:54:10 -0500 received badge Popular Question (source)
2019-06-19 10:15:10 -0500 marked best answer Code warnings, gettext and "Undefined name: _"

I have a program that uses gettext and has a lot of _("string") constructs. Since I define my _ translator function once using __builtin__._, WingIDE thinks the symbol is undefined everywhere I use it and adds a "Undefined name: _" to the Code warnings. Is there a way to tell WingIDE to stop worrying about _ in every file?

2019-06-19 10:00:50 -0500 asked a question Code warnings, gettext and "Undefined name: _"

Code warnings, gettext and "Undefined name: _" I have a program that uses gettext and has a lot of _("string") construct

2019-06-07 07:46:20 -0500 received badge Self-Learner ( source )
2019-06-07 02:21:55 -0500 commented question Debug console and gettext-enabled programs

For the record, this was fixed in Wing 7.0.3.1. Thanks!

2019-05-22 10:56:39 -0500 received badge Famous Question (source)
2019-05-22 10:51:06 -0500 commented answer Debug console and gettext-enabled programs

Well I'm using a custom function that wraps gettext with some logic... May I ask how you tell if _ is related to gettext

2019-05-22 10:28:57 -0500 received badge Popular Question (source)
2019-05-22 08:36:00 -0500 commented answer Debug console and gettext-enabled programs

Great, thanks! :)

2019-05-22 08:34:42 -0500 marked best answer Debug console and gettext-enabled programs

When you use the Debug console while a program is paused, it sets the special variable _ with the value of the last executed expression. as is the normal Python interpreter behaviour.
This gets to be a problem though: I have a gettext-enabled project with lots of _("localized") strings, so whenever I execute a statement inside the debug console, the _ gets redefined and I can't resume the program correctly, since on the next _("string") occurrence it would throw an error while trying to call _. Is there a recommended way to preserve _ while using the debug console?

I'm using Wing Pro 7.0.2.0