Search found 64 matches
- 13 May 2020 15:42
- Forum: General discussion
- Topic: Source code of diff-tool in Pascal
- Replies: 2
- Views: 1776
Source code of diff-tool in Pascal
Hello again I 've read that RJ TextEd has "jump to next/previous difference". So it has the powerfull diff-tool in Pascal. My program in Pascal uses Python plugin with "difflib" which works ok (btw it gives result in several formats by option) but it's slow on big files (5-10Mb). Can you please open...
- 08 May 2020 08:11
- Forum: Published Code
- Topic: Pascal Emmet
- Replies: 64
- Views: 27415
Re: Pascal Emmet
thanks. about new option AlwaysReturnNnnnnn. if it is False, then Emmet.pas must/should return ${n} tabstops if final snippet has mixed tabstops ( | and ${n} ).
- 06 May 2020 16:59
- Forum: Published Code
- Topic: Pascal Emmet
- Replies: 64
- Views: 27415
Re: Pascal Emmet
FPC 3.0.4 compile error emmet.pas function TEmmet.ExpandAbbreviation(AString: string; const ASyntax, ASelText: string; out ASection: string; out bMultiCursorTabs: Boolean): string; .. opt.AlwaysReturnIndexedTabs := False; while record has another member TExpandOptions = record AddSlashToEmptyTags: B...
- 06 May 2020 08:17
- Forum: Bugs
- Topic: FIXED: Emmet abbrev !
- Replies: 12
- Views: 3802
Re: FIXED: Emmet abbrev !
thanks. can you add the option for this please? - if snippet has several tabstops and tabstops are mixed | and ${n} - like for abbrev "!" (it has mixed index=1 index=2 and | )- then engine returns all tabstops as ${n}.
- 30 Apr 2020 22:31
- Forum: Bugs
- Topic: FIXED: Emmet abbrev !
- Replies: 12
- Views: 3802
Re: FIXED: Emmet abbrev !
now ! gives
not good, cause | and numbered stops. my program cannot handle | and numbered stops, it wants only | or only numbered stops 1,2,3,4...
Code: Select all
<!DOCTYPE html>
<html lang="${1:lang}">
<head>
<meta charset="${2:charset}"/>
<title>${3:Document}</title>
</head>
<body>
|
</body>
</html>
- 30 Apr 2020 15:20
- Forum: Published Code
- Topic: Pascal Emmet
- Replies: 64
- Views: 27415
Re: Pascal Emmet
RJ, can you please see report at viewtopic.php?p=17013#p17013 ?
- 30 Apr 2020 15:16
- Forum: Published Code
- Topic: Pascal Emmet
- Replies: 64
- Views: 27415
Re: Pascal Emmet
thanks. can we have option
cMultiplicationMax = 1000;
in the options "record", not as "const", please?
Edit. you already did it.
cMultiplicationMax = 1000;
in the options "record", not as "const", please?
Edit. you already did it.
- 29 Apr 2020 19:13
- Forum: Bugs
- Topic: FIXED: Emmet abbrev !
- Replies: 12
- Views: 3802
Re: FIXED: Emmet abbrev !
with Emmet.pas 1.14 I see
2 tab stops with index=2.
Code: Select all
<!DOCTYPE html>
<html lang="${1:lang}">
<head>
<meta charset="${2:charset}"/>
<title>${2:Document}</title>
</head>
<body>
|
</body>
</html>
- 26 Apr 2020 09:33
- Forum: Bugs
- Topic: FIXED: keyword is Pascal
- Replies: 1
- Views: 922
FIXED: keyword is Pascal
keyword 'out' not highlited:
procedure SrcNotebookInitIdentCompletion(Sender: TObject;
JumpToError: boolean; out Handled, Abort: boolean);
procedure SrcNotebookInitIdentCompletion(Sender: TObject;
JumpToError: boolean; out Handled, Abort: boolean);
- 26 Apr 2020 09:11
- Forum: Bugs
- Topic: FIXED: empty items in "Create new file" panel
- Replies: 1
- Views: 945
FIXED: empty items in "Create new file" panel
1st start of RJ editor. left panel is "Create new file". it shows empty items in LESS, JSON
if you like my reports, please fix Emmet.pas which I use.- 26 Apr 2020 09:08
- Forum: Bugs
- Topic: FIXED: caption of "Select language" dialog
- Replies: 1
- Views: 973
FIXED: caption of "Select language" dialog
Caption on 1st start is: SelectLanguageForm.
need more good title.
and label in this dialog is not needed.
need more good title.
and label in this dialog is not needed.
- 26 Apr 2020 08:53
- Forum: Next release
- Topic: Version 14.50
- Replies: 7
- Views: 3042
Re: Version 14.50
RJ, this is function of plugins. auto-complete and function hints. so editor work is not needed here, plugins are needed here. plugins for JS syntax.
- 26 Apr 2020 08:50
- Forum: Features
- Topic: hint on scrolling vertical scrollbar
- Replies: 0
- Views: 1020
hint on scrolling vertical scrollbar
>Added a line number hint when scrolling using the mouse. The hint is displayed top right in the editor window. When the document map is visible it's displayed to the left of the document map. better don't show hint lefter if document map is visible. it overlaps editor area. editor area is more imp...
- 24 Apr 2020 17:09
- Forum: Bugs
- Topic: FIXED: Emmet abbrev !
- Replies: 12
- Views: 3802
FIXED: Emmet abbrev !
! expands to
lang
charset
Document
via emmet.pas. this is not ok, my code makes 3 multi-carets (index 1). 3 carets with different content:<!DOCTYPE html>
<html lang="${1:lang}">
<head>
<meta charset="${1:charset}"/>
<title>${1:Document}</title>
</head>
<body>
</body>
</html>
lang
charset
Document
- 18 Apr 2020 09:44
- Forum: Bugs
- Topic: FIXED: Emmet double span
- Replies: 3
- Views: 1775
Re: Emmet double span
Thanks for confirmation.