Search found 23 matches

by bprlhe
07 Oct 2025 12:26
Forum: Language Servers (LSP)
Topic: Language Server for Objective C and Objective C++
Replies: 0
Views: 54159

Language Server for Objective C and Objective C++

They also use the same clangd language server as C/C++.

You only need to add the .m (Objective C) and .mm (Objective C++) file extensions to the template.
by bprlhe
06 Oct 2025 16:11
Forum: Syntax files
Topic: RJ TextEd's support for Objective C and Objective C++
Replies: 0
Views: 53943

RJ TextEd's support for Objective C and Objective C++

Syntax highlighting for Objective C (.m) and Objective C++ (.mm) are not in good shape.

.m file has limited syntax highlighting, and .mm file has no syntax highlighting at all.

Both Objective C and Objective C++ share the same .h extension for header files with C/C++.

The editor can't detect if ...
by bprlhe
15 Jun 2023 12:06
Forum: Language Servers (LSP)
Topic: clangd needs compile_commands.json
Replies: 1
Views: 52374

clangd needs compile_commands.json

What is your solution to this? Have the text editor generate this file? Sublime Text's plugin requires to use cmake as the build system: https://github.com/sublimelsp/LSP-clangd
by bprlhe
15 Jun 2023 08:42
Forum: Language Servers (LSP)
Topic: Need help setting up the clangd provided by the MSYS2 project
Replies: 4
Views: 51002

Re: Need help setting up the clangd provided by the MSYS2 project

Well, you were right. Added C:\msys64\clang64\include to Source folders solved the problem. On Sublime Text, I don't need to do that, though.
by bprlhe
15 Jun 2023 08:34
Forum: Language Servers (LSP)
Topic: Need help setting up the clangd provided by the MSYS2 project
Replies: 4
Views: 51002

Re: Need help setting up the clangd provided by the MSYS2 project

No, it's RJ TextEd that is problematic. When I hover over #include <cmath> I found it correctly show the header's location as C:/msys64/clang64/include/c++/v1/cmath.
by bprlhe
14 Jun 2023 21:19
Forum: General discussion
Topic: Open PDF files on RJ TextEd?
Replies: 2
Views: 41824

Re: Open PDF files on RJ TextEd?

Here is the PDFium control used by the Text Editor Pro developer:

https://github.com/TextEditorPro/TPDFiumControl
by bprlhe
14 Jun 2023 21:18
Forum: Language files
Topic: Feature Request: Edit language files via GitHub
Replies: 2
Views: 57333

Re: Feature Request: Edit language files via GitHub

The Text Editor Pro developer also publishes his syntax highlighter component and syntax highlighting files on Github. Too bad he doesn't turn Issues on so people can't interact with him there. He can only be contacted via his email address.

https://github.com/TextEditorPro/TTextEditor
by bprlhe
14 Jun 2023 21:13
Forum: Syntax files
Topic: DONE: Could syntax highlighting for htmx and _hyperscript be implemented?
Replies: 3
Views: 42913

DONE: Could syntax highlighting for htmx and _hyperscript be implemented?

Their websites are htmx.org and hyperscript.org. As I know there are syntax highlighting already available for VSCode and Sublime Text.
by bprlhe
14 Jun 2023 21:08
Forum: MPad
Topic: Version 1.24
Replies: 1
Views: 40853

Re: Version 1.24

The Open dialog is not correctly themed. With any dark themes, the Open dialog is generally still light but the texts on the left pane are becoming white and thus invisible, only the icons are still visible. This doesn't happen with RJ TextEd.

p/s: I'm using Windows 8.1 64 bit.
by bprlhe
14 Jun 2023 17:49
Forum: General discussion
Topic: Open PDF files on RJ TextEd?
Replies: 2
Views: 41824

Open PDF files on RJ TextEd?

A PDFium based plugin to open PDF files inside the application like Text Editor Pro?

https://www.texteditor.pro/support/downloads/ (scroll to PDF VIEW).
by bprlhe
14 Jun 2023 17:09
Forum: Language Servers (LSP)
Topic: Need help setting up the clangd provided by the MSYS2 project
Replies: 4
Views: 51002

Re: Need help setting up the clangd provided by the MSYS2 project

I asked this question because the settings by me seem not working. On Language server settings I set the Command to be C:\msys64\clang64\bin\clangd.exe and Initial folder to be C:\msys64\clang64\bin . Other settings are left with default values. When I working on an example source the language ...
by bprlhe
14 Jun 2023 17:01
Forum: Language Servers (LSP)
Topic: Need help setting up the clangd provided by the MSYS2 project
Replies: 4
Views: 51002

Need help setting up the clangd provided by the MSYS2 project

It's different from the standalone clangd or the clangd provided by LLVM. The template for clangd of RJ TextEd is based on the clangd provided by LLVM. To get the MSYS2 clangd, install the package mingw-w64-clang-x86_64-toolchain with the pacman package manager on MSYS2 then add C:\msys64\clang64 ...
by bprlhe
14 Jun 2023 16:56
Forum: Features
Topic: DONE: Allow setting environment variables for the language server process from RJ TextEd's Language server settings
Replies: 1
Views: 10959

DONE: Allow setting environment variables for the language server process from RJ TextEd's Language server settings

This feature is very useful. For example, the Objeck language server required the environment variable OBJECK_STDIO to be set to stdio, but doing so globally will break the output of command line Objeck applications as they need OBJECK_STDIO to be either utf8 or utf16.
by bprlhe
06 Apr 2023 06:43
Forum: Syntax files
Topic: Improved syntax highlighting file for Objeck
Replies: 1
Views: 39659

Improved syntax highlighting file for Objeck

You forgot to add Objeck's reference types. I added them for you.
by bprlhe
05 Apr 2023 08:58
Forum: Language Servers (LSP)
Topic: How to add a new language?
Replies: 10
Views: 67242

Re: How to add a new language?

I will report back to the Objeck developer. Thank you.