You are here: PSPad forum > Developer forum - new builds > PSPad unicode 4.5.3 (2297) English

PSPad unicode 4.5.3 (2297) English

Goto Page: Previous1 2 3 4 5 Next

#31 Re: Syntax highlighting for Perl in large files

Posted by: gurbao | Date: 2008-01-03 09:09 | IP: IP Logged

Hi,

still bothering you with the log-window smiling smiley

Is it possible to have the current line color also in this window?

Is it possible to have the Find (ctrl-F) work in the log window as earlier?
Now, when cursor is in log-window and performing a Find, you will find text in main window...

Thanks,

Options: Reply | Quote | Up ^


#32 Re: Syntax highlighting for Perl in large files

Posted by: pspad | Date: 2008-01-03 12:16 | IP: IP Logged

gurbao:
Hi,

still bothering you with the log-window smiling smiley

Is it possible to have the current line color also in this window?

Is it possible to have the Find (ctrl-F) work in the log window as earlier?
Now, when cursor is in log-window and performing a Find, you will find text in main window...

Thanks,

Due to problems with "broken chars" in the LOG I had to change LOG into new component. There isn't support for the current line and search.

Options: Reply | Quote | Up ^


#33 Re: PSPad unicode 4.5.3 (2297) English

Posted by: imiglikos2 | Date: 2008-01-04 14:33 | IP: IP Logged

Hi there,

what about an additional smart and simple/fast search possibility like the one from firefox? only one small line at the bottom with "find", "find next" and highlight?
Is that possible to include and useful for others too?

Kind regards,
Markus

Edited 1 time(s). Last edit at 2008-01-04 14:38 by imiglikos2.

Options: Reply | Quote | Up ^


#34 Re: PSPad unicode 4.5.3 (2297) English

Posted by: vbr | Date: 2008-01-04 16:25 | IP: IP Logged

imiglikos2:
what about an additional smart and simple/fast search possibility ...

Try Ctrl+E (Search :: Incremental search); you can also use:
find next (F3 or Ctrl+Shift+Down)
and find previous (Shift+F3 or Ctrl+Shift+Up)

Options: Reply | Quote | Up ^


#35 ASCII table window - wrong characters

Posted by: KraPet | Date: 2008-01-14 08:42 | IP: IP Logged

ALT+A
Not all characters are interpreted/shown correctly.

For example:
156 œ
191 ¿
192 À
224 à

For reference to ISO 8859-1 Character Entities you can see
www.w3schools.com
or
en.wikipedia.org

Options: Reply | Quote | Up ^


#36 Re: ASCII table window - wrong characters

Posted by: pspad | Date: 2008-01-14 09:05 | IP: IP Logged

It depends of the used charset. You are using ISO-8859-1, somebody uses ISO-8859-2 e.t.c.
You can edit ASCII.INI file for yourself

Options: Reply | Quote | Up ^


#37 Re: ASCII table window - wrong characters

Posted by: gurbao | Date: 2008-01-17 11:11 | IP: IP Logged

Hi,

any chance of increasing the row-length in the memo-style log window?
It seems max length is 1024...

Regards,

Options: Reply | Quote | Up ^


#38 Re: ASCII table window - wrong characters

Posted by: KraPet | Date: 2008-01-18 13:55 | IP: IP Logged

I'm sorry, but issue is in displayed chars (can't put them here).

In ASCII table window (ALT+A):
DEC:156 HTML:œ is displayed as DEC:347 CHAR:ś
DEC:191 HTML:¿ is displayed as DEC:380 CHAR:ż
DEC:224 HTML:à is displayed as DEC:341 CHAR:ŕ

Example:
when I click on CHAR(&rgrave;) at next DEC 224 it puts really &rgrave;
but using ALT+0224 sequence it puts à

Reference:
xml.ascc.net ISOlat1.pen
xml.ascc.net ISOlat2.pen

I expect that ASCII table window show chars in selected encoding (ISO-8859-1, ISO-8859-2, UTF-8, ..).

In ASCII.INI I'm able to change only HTML column.

Options: Reply | Quote | Up ^


#39 Re: PSPad unicode 4.5.3 (2297) English

Posted by: MoMann | Date: 2008-01-20 21:04 | IP: IP Logged

Jan,

I think I bug when using Clip Definition:

This is in my TCL.DEF
[Macro definition]
%classNameSpace%=@E Class/NameSpace:
%proc%=@E Procedure Name:
%method%=@E Method Name:
%autor%=@E Author Name:
%args%=@E Arguments:
%desc%=@E Description:
%returnValue%=@E ReturnValue:
%notes%=@E Notes:
%warnings%=@E Warnings:
%knownBugs%=@E Known Bugs:
%todo%=@E TODO:
[proc | procedure tcl]
#****f* %classNameSpace%/%proc%
# NAME
# Item name plus a short description.
# COPYRIGHT
# (c) 2008 %Company%
# USAGE
#
# DESCRIPTION
# %desc%
# AUTHOR
# %autor%
# CREATION DATE
# %Date%
# HISTORY
# %Date% %autor%
# ARGUMENTS
# %args%
# RETURN VALUE
# %returnValue%
# NOTES
# %notes%
# WARNINGS
# %warnings%
# BUGS
# %knownBugs%
# TODO
# %todo%.
# SEE ALSO
#
# SOURCE
#
proc %proc% {%args%} {
set procname "%classNameSpace%::%proc%"

set dbg [DISABLE]
set dbg [expr $dbg | $SCOPE_DEBUG]

if {$dbg} {printDebug "DEBUG - Procname: $procname"}

return
}

####################################################
and this is what is returned when I use it:

it removed the '|' in : set dbg [expr $dbg | $SCOPE_DEBUG]

####################################################

#****f* foo/foo
# NAME
# Item name plus a short description.
# COPYRIGHT
# (c) 2008
# USAGE
#
# DESCRIPTION
#
# AUTHOR
#
# CREATION DATE
# Sunday, January 20, 2008
# HISTORY
# Sunday, January 20, 2008
# ARGUMENTS
#
# RETURN VALUE
#
# NOTES
#
# WARNINGS
#
# BUGS
#
# TODO
# .
# SEE ALSO
#
# SOURCE
#
proc foo {} {
set procname "foo::foo"

set dbg [DISABLE]
set dbg [expr $dbg $SCOPE_DEBUG]

if {$dbg} {printDebug "DEBUG - Procname: $procname"}

return
}
#****

Edited 2 time(s). Last edit at 2008-01-20 21:07 by MoMann.

Options: Reply | Quote | Up ^


#40 Re: PSPad unicode 4.5.3 (2297) English

Posted by: Stefan | Date: 2008-01-21 14:09 | IP: IP Logged

Hi MoMann

Press F1 => PSPad Help =>
=> Working with PSPad > Context Files =>
=> Interactive Clips =>

Cite:
"There are 2 special characters that
you can use in your content; | and § (ALT+167)."
Read more in the help.

-

Work around

There is a new feature for some time:
Use this following in your DEF-file
to set this special chars to your need:

[CLIP SETTINGS]
CursorChar=|
SelectionChar=§

-

Options: Reply | Quote | Up ^


Goto Page: Previous1 2 3 4 5 Next





Editor PSPad - freeware editor, © 2001 - 2024 Jan Fiala, Hosted by Webhosting TOJEONO.CZ, design by WebDesign PAY & SOFT, code Petr Dvořák, Privacy policy and GDPR