I'll search for xkb key names for those special characters.Based on the search results, here are the XKB keysym names for those characters:
| Character | XKB Keysym Name |
|---|---|
| ö | odiaeresis |
| ç | ccedilla |
| ğ | gbreve |
| ş | scedilla |
| -- Add checks for essential modules | |
| local ok_lspconfig, lspconfig = pcall(require, "lspconfig") | |
| if not ok_lspconfig then | |
| vim.notify("Error: `lspconfig` module not found. QML LSP setup aborted.", vim.log.levels.ERROR) | |
| return {} | |
| end | |
| local configs = require("lspconfig.configs") | |
| local util = require("lspconfig.util") |