i have encountered a problem with the snippet library. If you insert a snippet via callword (and pressing Ctrl + J) then the inserted snippet kills the newline char after the last char of the snippet.
For example (pipe symbolises the cursor):
Code: Select all
<?php
function foo() {
function bar() {
|
}
}
?>
Code: Select all
<?php
function foo() {
function bar() {
$res = $GLOBALS['TYPO3_DB']->exec_SELECTquery(
'|',
'',
'',
'',
'',
''
); }
}
?>
Well, and it doesn't help if you insert a newline after the snippet in the snippet library!
That is the bug ... now a question. Is it possible to change the Ctrl+J shortcut? I didn't find it in the "Keyboard shortcuts..." settings.
Thx, EvilBMP