Chris

Results 13 comments of Chris

I have been trying to get sourcekit-lsp working in Orc Src buffer for remote files over tramp. I can confirm that opening the file over tramp directly works with the...

It seems to be setting the buffer-file-name correctly. I even tried running ```revert-buffer``` on the Org Src buffer and the correct remote path shows up in the ```Revert buffer from...

SOLVED! I had to also set the ```default-directory``` in the ```org-babel-edit-prep:swift``` **Solution:** ```lisp (defun org-babel-edit-prep:swift (babel-info) "Setup for lsp-mode in Org Src buffer using BABEL-INFO." (setq-local default-directory (->> babel-info caddr...

Wow... I just wasted so much time trying to figure this out... of course now that I know the answer I easily found it mentioned in the documentation but passed...

I faced this same issue. I beleive this is caused by ```OpenSSL 3.0``` having ```CipherString = DEFAULT:@SECLEVEL=2``` in ```/etc/ssl/openssl.cnf``` What solved it for me is to create an alternate config...

Off the top of my head could you not just "AS" the fields ? (table1.id AS table1_id table2.id AS table2_id...etc)

I faced the same issue. [This](https://stackoverflow.com/a/67284695/2974621) solution worked for me. Create a file ```openssl_tls1.cnf``` and put it anywhere with the following: ```ini openssl_conf = default_conf [ default_conf ] ssl_conf =...

incase anyone finds this useful: from ``` mssql-cli/mssqlcli/telemetry.py ``` ``` def _user_agrees_to_telemetry(func): @wraps(func) def _wrapper(*args, **kwargs): user_opted_out = os.environ.get(MSSQL_CLI_TELEMETRY_OPT_OUT, False) if user_opted_out in ['True', 'true', '1']: return None return func(*args,...

I would assume so. I haven't scripted it but I do it manually with the following: ``` sql ALTER DATABASE "THE_DB" SET OFFLINE WITH ROLLBACK IMMEDIATE RESTORE DATABASE "THE_DB" FROM...

This seems to have solved the issue for me. ``` diff --git a/mssqlcli/packages/special/commands.py b/mssqlcli/packages/special/commands.py index d211242..f89eb3e 100644 --- a/mssqlcli/packages/special/commands.py +++ b/mssqlcli/packages/special/commands.py @@ -314,7 +314,7 @@ def get_editor_query(sql): # The reason...