Compare commits

...

3 commits

Author SHA1 Message Date
Daniel Siepmann 6e280bc9c5
Improve neovim configuration 2023-11-13 08:07:51 +01:00
Daniel Siepmann 28cb57cdba
Update project specific files 2023-11-13 08:07:30 +01:00
Daniel Siepmann 919b390201
Adjust Firefox user chrome css
The markup has changed, the css is adjusted.
2023-11-13 08:06:42 +01:00
8 changed files with 10 additions and 5 deletions

View file

@ -1,7 +1,9 @@
/*
* Important: use "visibility: collapse" instead of "display: none".
* I do not know why, but display: none will hide the whole content of the frame.
*
* See: https://firefox-source-docs.mozilla.org/devtools-user/browser_toolbox/index.html
*/
#navigator-toolbox-background {
#navigator-toolbox {
visibility: collapse !important;
}

View file

@ -10,9 +10,8 @@ augroup typo3
autocmd BufWritePost **/Configuration/Services.yaml,**/Configuration/Services/*.yaml,**/Configuration/Services.php :silent !rm */**/cache/**/DependencyInjectionContainer_*
" Extbase
" Performance issues for extbase, keep an eye
" autocmd BufWritePost **/Classes/**/*.php :silent !rm -rf */**/cache*/**/extbase/*
autocmd BufWritePost **/Configuration/Extbase/Persistence/Classes.php :silent !rm */**/cache*/**/extbase/PersistenceClasses_*
autocmd BufWritePost **/Domain/Model/*.php :silent !rm */**/cache/data/extbase/*
autocmd BufWritePost **/Configuration/Extbase/Persistence/Classes.php :silent !rm */**/cache/data/extbase/*
autocmd BufWritePost **/ext_tables.php :silent !rm */**/cache*/**/ext_tables_*
autocmd BufWritePost **/ext_localconf.php :silent !rm */**/cache*/**/ext_localconf_*

View file

@ -4,6 +4,8 @@ snippet file Insert Fluid Template File with Namespace
>
${0}
</html>
snippet ficon
{core:icon(identifier: '${0}')}
snippet falias
<f:alias map="${1}">
${0}

View file

@ -174,7 +174,9 @@ snippet t3file
snippet localconf
<?php
(function ($extensionKey) {
declare(strict_types=1);
(static function (string $extensionKey): void {
${0}
})('${1:}');

Binary file not shown.