This commit is contained in:
2026-03-24 15:17:39 +01:00
parent 24a06c0b05
commit 5d25faff51
3 changed files with 86 additions and 18 deletions

View File

@@ -136,3 +136,17 @@ symbol_info_budget:
# list of regex patterns which, when matched, mark a memory entry as readonly.
# Extends the list from the global configuration, merging the two lists.
read_only_memory_patterns: []
# list of regex patterns for memories to completely ignore.
# Matching memories will not appear in list_memories or activate_project output
# and cannot be accessed via read_memory or write_memory.
# To access ignored memory files, use the read_file tool on the raw file path.
# Extends the list from the global configuration, merging the two lists.
# Example: ["_archive/.*", "_episodes/.*"]
ignored_memory_patterns: []
# advanced configuration option allowing to configure language server-specific options.
# Maps the language key to the options.
# Have a look at the docstring of the constructors of the LS implementations within solidlsp (e.g., for C# or PHP) to see which options are available.
# No documentation on options means no options are available.
ls_specific_settings: {}

View File

@@ -34,6 +34,18 @@
"modified": false
},
".serena": {},
".tmp_inwestycja.html": {
"type": "-",
"size": 52808,
"lmtime": 1774251350329,
"modified": false
},
".tmp_lokalizacja.html": {
"type": "-",
"size": 47201,
"lmtime": 1774251350330,
"modified": false
},
"wp-activate.php": {
"type": "-",
"size": 7349,
@@ -72,8 +84,8 @@
"css": {
"custom.css": {
"type": "-",
"size": 995,
"lmtime": 1774251394159,
"size": 1690,
"lmtime": 1774269957773,
"modified": false
},
"custom.css.map": {
@@ -102,8 +114,8 @@
},
"custom.scss": {
"type": "-",
"size": 998,
"lmtime": 1774251389784,
"size": 1590,
"lmtime": 1774269950416,
"modified": false
},
"editor.asset.php": {
@@ -231,8 +243,8 @@
},
"garage-map.php": {
"type": "-",
"size": 84222,
"lmtime": 1774252620357,
"size": 84971,
"lmtime": 1774269940130,
"modified": false
},
"header.php": {
@@ -255,6 +267,46 @@
}
}
}
},
"plugins": {
"elementor-addon": {
"elementor-addon.php": {
"type": "-",
"size": 16812,
"lmtime": 1774271181082,
"modified": false
},
"widgets": {
"apartaments.php": {
"type": "-",
"size": 14014,
"lmtime": 1774271189698,
"modified": false
}
},
"assets": {
"css": {
"main.css": {
"type": "-",
"size": 8805,
"lmtime": 1774271363038,
"modified": false
},
"main.css.map": {
"type": "-",
"size": 1454,
"lmtime": 0,
"modified": false
},
"main.scss": {
"type": "-",
"size": 6895,
"lmtime": 1774271358042,
"modified": false
}
}
}
}
}
},
"wp-cron.php": {
@@ -311,18 +363,6 @@
"size": 3205,
"lmtime": 0,
"modified": false
},
".tmp_inwestycja.html": {
"type": "-",
"size": 52808,
"lmtime": 1774251350329,
"modified": false
},
".tmp_lokalizacja.html": {
"type": "-",
"size": 47201,
"lmtime": 1774251350330,
"modified": false
}
}
},

View File

@@ -35,6 +35,20 @@
overflow: hidden;
}
body header.elementor-location-header {
position: sticky;
top: 0;
z-index: 1000;
}
body.admin-bar header.elementor-location-header {
top: 32px;
}
@media (max-width: 782px) {
body.admin-bar header.elementor-location-header {
top: 46px;
}
}
.spot.is-reserved {
fill: #f4eba8;
}