Compare commits

...

4 commits

8 changed files with 12 additions and 21 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 394 B

View file

@ -27,17 +27,6 @@ in {
order = [
];
engines = {
"kagi.com" = {
urls = [{
template = "https://kagi.com/search";
params = [
{ name = "q"; value = "{searchTerms}"; }
];
}];
icon = ./../../assets/kagi.png;
definedAliases = [ "@kagi" ];
};
"PHP.net" = {
urls = [{
template = "https://www.php.net/manual-lookup.php";
@ -196,7 +185,7 @@ in {
"intl.accept_languages" = "en,de";
"browser.search.countryCode" = "DE";
"browser.search.hiddenOneOffs" = "eBay,Google,Amazon.de,Bing,DuckDuckGo,Wikipedia (en)";
"browser.search.hiddenOneOffs" = "eBay,Google,Amazon.de,Bing,Wikipedia (en)";
"browser.search.region" = "DE";
"browser.search.suggest.enabled" = false;

View file

@ -1,5 +1,5 @@
setlocal tabstop=2 " the visible width of tabs
setlocal softtabstop=2 " edit as if the tabs are 2 characters wide
setlocal shiftwidth=2 " number of spaces to use for indent and unindent
setlocal tabstop=4 " the visible width of tabs
setlocal softtabstop=4 " edit as if the tabs are 2 characters wide
setlocal shiftwidth=4 " number of spaces to use for indent and unindent
setlocal omnifunc=v:lua.vim.lsp.omnifunc

View file

@ -11,8 +11,8 @@ augroup typo3
autocmd BufWritePost **/Configuration/RequestMiddlewares.php :silent !rm */**/cache/**/middlewares_*
autocmd BufWritePost **/Configuration/Services.yaml,**/Configuration/Services/*.yaml,**/Configuration/Services.php :silent !rm */**/cache/**/DependencyInjectionContainer_*
autocmd BufWritePost **/Configuration/TCA/** :silent !rm */**/cache*/**/tca_base_*
autocmd BufWritePost **/ContentBlocks/ContentElements/* :silent !rm **/var/cache/code/core/content-blocks.php
autocmd BufWritePost **/ContentBlocks/ContentElements/* :silent !rm */**/cache*/**/tca_base_*
autocmd BufWritePost **/ContentBlocks/* :silent !rm **/var/cache/code/core/content-blocks.php
autocmd BufWritePost **/ContentBlocks/* :silent !rm */**/cache*/**/tca_base_*
autocmd BufWritePost **/Domain/Model/*.php :silent !rm */**/cache/data/extbase/*
autocmd BufWritePost **/ext_localconf.php :silent !rm */**/cache*/**/ext_localconf_*
autocmd BufWritePost **/ext_tables.php :silent !rm */**/cache*/**/ext_tables_*

View file

@ -1,3 +1,4 @@
au BufNewFile,BufRead **/ContentBlocks/**/*.html setlocal filetype=fluid
au BufNewFile,BufRead **/Resources/Private/**/*.html setlocal filetype=fluid
au BufNewFile,BufRead **/Resources/Private/Partials/** setlocal filetype=fluid
au BufNewFile,BufRead **/Resources/Private/Layouts/** setlocal filetype=fluid

View file

@ -1,5 +1,6 @@
snippet file Insert Fluid Template File with Namespace
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers"
<html
xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers"
data-namespace-typo3-fluid="true"
>
${0}

View file

@ -172,7 +172,7 @@ snippet testfile
use PHPUnit\Framework\TestCase;
#[CoversClass(`expand('%:r:s?Test$??:s?.*/??')::class)
final class ${1:`expand('%:t:s?.php??')`} extends TestCase
final readonly class ${1:`expand('%:t:s?.php??')`} extends TestCase
{
#[Test]
public function canBeCreated(): void
@ -218,7 +218,7 @@ snippet testfilelegacy
/**
* @covers \DanielSiepmann`expand('%:r:s?.*ext/??:s?local_packages/??:s?Classes/??:s?Tests/Unit/??:s?Tests/Functional/??:s?Test??:s?.*_?\u&?:gs?_.?\U&?:gs?_??:gs?/?\\\?:s??\\\?')`
*/
final class ${1:`expand('%:t:s?.php??')`} extends TestCase
final readonly class ${1:`expand('%:t:s?.php??')`} extends TestCase
{
/**
* @test
@ -262,7 +262,7 @@ snippet codeceptiontestfile
use PhpbrowserTester;
final class ${1:`expand('%:t:s?.php??')`}
final readonly class ${1:`expand('%:t:s?.php??')`}
{
public function firstTest(PhpbrowserTester $I): void
{

Binary file not shown.