Encoding in Tasks Pane

General questions regarding the usage of CodeLite
soMan
CodeLite Enthusiast
Posts: 30
Joined: Tue Apr 03, 2012 1:18 am
Genuine User: Yes
IDE Question: C++
Contact:

Encoding in Tasks Pane

Post by soMan »

Can I change a tasks pane displayed encoding? I wrote my tasks in russian and after searching via pane I got unreadable characters.
Used codepage in files: cp1251
Windows 7
CodeLite 4.0.5589
Image
User avatar
eranif
CodeLite Plugin
Posts: 6373
Joined: Wed Feb 06, 2008 9:29 pm
Genuine User: Yes
IDE Question: C++
Contact:

Re: Encoding in Tasks Pane

Post by eranif »

Hi,

unfortunately no. It is hard coded to

Code: Select all

data.SetEncoding(wxT("ISO-8859-1")); 
I fixed it in trunk by adding a little drop drop down for encoding selection

Eran
Make sure you have read the HOW TO POST thread
soMan
CodeLite Enthusiast
Posts: 30
Joined: Tue Apr 03, 2012 1:18 am
Genuine User: Yes
IDE Question: C++
Contact:

Re: Encoding in Tasks Pane

Post by soMan »

Now it works, thanks, but it would be good to replace this option to somewhere in Settings without damage to UI usability.
User avatar
eranif
CodeLite Plugin
Posts: 6373
Joined: Wed Feb 06, 2008 9:29 pm
Genuine User: Yes
IDE Question: C++
Contact:

Re: Encoding in Tasks Pane

Post by eranif »

soMan wrote:damage to UI usability
Since Tasks is using the 'Find In Files' it would be logical to use the encoding inside the Find In Files dialog, but it also makes it harder for
users to find this settings. Placing it in a visible location - makes it easier IMO

Eran
Make sure you have read the HOW TO POST thread
Post Reply