Skip to main content
Filter by
Sorted by
Tagged with
1 vote
1 answer
62 views

I Am using ckeditor 5 and here is my configuration. which is working good when i first load the page but i click on the submit button and server redirect me on same page this is no longer working here....
Shubham kumar's user avatar
0 votes
0 answers
65 views

I installed Geany for coding, and I want to add syntax highlight for TypeScript files I already added #TypeScript=*.ts;*.tsx; to filetype_extensions.conf, and restarted it a few times, but it's not ...
Ash's user avatar
  • 1
0 votes
0 answers
51 views

I’m trying to create a custom mark in Tiptap v3 that highlights tags written like value inside inline text. Here’s my current extension: import { Mark, mergeAttributes, markInputRule } from "@...
GL_CH's user avatar
  • 1
1 vote
2 answers
127 views

My comic book editor app in SwiftUI has a user-manageable speech bubble. I want to create a BubbleView that a user can drag freely on a canvas. Dynamic sizing: The bubble's frame must automatically ...
Murat Çiçek's user avatar
0 votes
0 answers
71 views

I am trying to make a text editor with prompt_toolkit. While implementing tab indentation, I came across this weird behavior: def keybinds(self): kb = KeyBindings() @kb.add("...
Siddharth Dhir's user avatar
2 votes
1 answer
27 views

Good day, I am using sublime text editor, is there a way to find a keyword within a specific function/method only? for example, in my controller User.php, there are multiple functions inside it, now I ...
melvnberd's user avatar
  • 3,185
0 votes
0 answers
50 views

I'm using Froala Editor in my Angular project, and I'm relatively new to it. In my setup, I have a single Froala editor instance shared across multiple pages. When I switch between pages, I clear the ...
Ragesh Pikalmunde's user avatar
0 votes
1 answer
196 views

image When I copy output from mtr (My Traceroute) into Visual Studio Code, I see orange boxes appearing around some of the characters. What do these orange boxes represent, and how can I disable or ...
Grin's user avatar
  • 3
0 votes
0 answers
56 views

I have a stack of commits that I think I am ready to merge to main. I can easily right click on "origin/main" and select "Compare commit against working directory". This gives me a ...
srm's user avatar
  • 3,361
1 vote
1 answer
159 views

I'm implementing text highlighting functionality in a custom text editor using vanilla javascript, similar to how MS Word highlights text. The issue I'm encountering is that when a user selects text ...
Roy Hoffman's user avatar
0 votes
0 answers
49 views

I'm implementing a view layer for a markdown editor in svelte 5. I've already created an incremental parser that parses markdown to MDAst. MDAst parse a markdown source file as a hierarchy of sections....
Y-jiji's user avatar
  • 3
-1 votes
1 answer
74 views

I think the best way to describe what I'm asking is with a picture. Say I have this C++ code: Say, if I want to quickly jump from point 1 to point 2 (and vice versa) - is there a shortcut in VS 2022 (...
c00000fd's user avatar
  • 22.8k
0 votes
0 answers
150 views

I’m using Quill.js and need to: Make "small" the default text size when the editor loads. Ensure the text size persists when the user types. Keep the selected size after pressing Enter (...
Yara Abd's user avatar
0 votes
0 answers
58 views

I'm currently in the process of developing a virtual file system in go as a passion project, and would like to implement a text editor into my virtual file system. I have done some research into it ...
Shadow Pixel's user avatar
0 votes
0 answers
40 views

I have these methods to handle the viewing of my auto-complete feature within a code editor that I'm building in Textual; essentially it's a little pop-up that renders on screen with the list of ...
akrm's user avatar
  • 1
0 votes
1 answer
71 views

I am writing a Python text editor with TkInter, and I'm writing the "Preferences" window to edit the font, the font dimension etc. It is in the __openPreferences() method in the LampText ...
Alessio Spinellino's user avatar
0 votes
0 answers
160 views

I'm trying to create a text editor similar to the one in the Notes app. The Notes app provides the following formatting options: Text Styles: Title, Heading, Subheading, Body Text Formatting: Bold, ...
milkycards's user avatar
0 votes
0 answers
33 views

I have enabled the auto wrap feature. This function usually runs normally. But sometimes there may be some lines that break prematurely.Lines with black dots need attention.What can be done to solve ...
zqdlly's user avatar
  • 25
1 vote
1 answer
109 views

i am working on the angular cli 18 and want to implement angular-markdown-editor and I have followed the instructions on this link https://github.com/ghiscoding/angular-markdown-editorafter all the ...
Rinkal's user avatar
  • 71
2 votes
0 answers
68 views

I am trying to find a way to draw the checkbox in TextKit 2, Trying to use NSTextLayoutFragment and NSLayoutManager Delegate methods to draw the checkbox and also paragraph alongside the checkbox. ...
FE_Tech's user avatar
  • 1,812
1 vote
1 answer
254 views

I want to create my own operating system. In this OS, I have an edit mode for modifying file data (currently only in RAM). Here full code of this os: #include "editor.h" #include "uart....
Dmytro Parkhomenko's user avatar
-2 votes
1 answer
141 views

Yesterday, while I was working on my python project, I noticed something odd. Whenever I would try open Neovim and jump to a python file using harpoon, the editor would crash.
Pratyush's user avatar
0 votes
0 answers
87 views

I have started learning coding few weeks ago. I had installed Next.js yesterday and it run smoothly then deleted the project. Today when I again tried to install, its been more then four hours and ...
Nancy I's user avatar
1 vote
3 answers
184 views

so I'm trying to print every keypress as an integer and character referencing to ASCII code. and it seems I can't print some of control character. After reading antirez's booklet about his kilo text ...
Ferhatch's user avatar
0 votes
2 answers
71 views

I have a very simple TextEditor in a SwiftUI Form to allow users to send feedback about the app. I want to set a minHeight and maxHeight for the text field so that it's clear the user can enter ...
markb's user avatar
  • 1,381
0 votes
1 answer
430 views

html code: <angular-editor [placeholder]="'Enter task...'" formControlName="task_note" [config]="editorConfig"> </angular-editor> <div class="icon" style="cursor: pointer" (...
Joshna J.U's user avatar
0 votes
0 answers
34 views

I am not able to understand what TCSAFLUSH does. I've read everything online about this, and still it is not clear to me. Can someone please explain this by not giving me the docs link and explain it ...
Raman Bhardwaj's user avatar
0 votes
1 answer
242 views

I've got a very simple ABAP program demonstrating how to display a Text Editor field (cl_gui_textedit), which I want to share via Internet, email, forum, blog post or whatever. I'd like the people to ...
Sandra Rossi's user avatar
0 votes
0 answers
289 views

I'm writing a text editor as an exercise and I'm using a gap buffer as the data structure for holding text. For a cursor, I'm just storing an index into the buffer. Here is what I'm working with: ...
SPIGS's user avatar
  • 21
0 votes
1 answer
38 views

I am writing a program that works as a Google docs clone type thing. I am currently programming the header of the text editor itself where it says the title and your profile picture. For the title, it ...
Ryan Hajji's user avatar
-1 votes
1 answer
70 views

If in the Visual Studio text editor I press <, { or ( to overwrite the selected text, it surrounds it instead. How could I disable it? C++ option for surrounding text is turned off (Text Editor | C/...
OZone's user avatar
  • 39
0 votes
1 answer
161 views

I work on Visual studio 2022 (Microsoft Visual Studio Enterprise 2022 (64-bit) - Current Version 17.10.3 ) and intellisense autocomplete erases the period. How can i have it not erase the period (or ...
Alaster's user avatar
0 votes
1 answer
147 views

I've used Quill Editor in my Laravel project. However, I am unable to retrieve the value from the editor. I tried adding a name attribute but this is not working. <div id="content" name=&...
Ajinkya More's user avatar
0 votes
0 answers
106 views

I'm a beginner so please don't go too harsh on me, I've been following a tutorial that a friend of mine gave for building a text editor with C++ on WSL, I've already built the functionalities for the ...
Michael Kraiton's user avatar
0 votes
0 answers
209 views

I am new to the emacs text editor. Whenever I use the text editor in terminal, I find that I need to use the arrow keys on my keyboard to navigate through the code. I find this to be cumbersome when ...
theheretic's user avatar
3 votes
1 answer
212 views

Examples of boundary characters can be: "", '', (), space, ^$ (start and end of the line if any other boundary characters are not specified explicitly). Boundary characters should be easily ...
Anton Samokat's user avatar
1 vote
0 answers
79 views

I am trying to implement vertical cursor movement (up and down arrow keys) in my custom nano-like text editor, but I could not get it working properly and keep introducing new bugs. My text editor ...
Viliam Holly's user avatar
1 vote
2 answers
2k views

I'm looking to improve my workflow in Visual Studio Code by enabling the "Copy on Selection" feature. This feature would automatically copy any text I select to the clipboard without ...
Taher Anaya's user avatar
1 vote
0 answers
16 views

I need a text editor like megadraft or tiptap which is posted here TipTap example I need a text editor that will not have a toolbar with buttons. I need a text editor that will have a plus on the left ...
op po's user avatar
  • 21
0 votes
0 answers
1k views

I am trying to download lexical editor contents in the form of a file. So i am trying to extract its equivalent markdown . import { createHeadlessEditor } from '@lexical/headless'; import { $...
Ankeeta Sahoo's user avatar
0 votes
0 answers
105 views

I want to install Monaco editor into a WPF app, I Tried looking the issue up on youtube but nothing came up. I've tried installing it like I normally would on Windows Forms App but all it did was ...
gambling addict's user avatar
1 vote
0 answers
267 views

I'm trying to make a productivity application that requires an editor so I'm using TipTap. On main screen there are 4 divs and when you click on one div it opens a different instance of the editor. &...
h r's user avatar
  • 11
2 votes
1 answer
245 views

First time using TextEditor in a macOS project. According to this: https://www.hackingwithswift.com/quick-start/swiftui/how-to-let-users-find-and-replace-text my code should give me built-in Search / ...
David Homes's user avatar
  • 2,824
2 votes
1 answer
607 views

After installing emacs with snap with the command: sudo snap install emacs --classic, the terminal result was: emacs 29.3 from Alex Murray (alexmurray✪) installed Then , when I tried to open emacs ...
masrur's user avatar
  • 65
1 vote
0 answers
74 views

Im using the rich text editor Syncfusion and i wondering if there is an option to do detailed automatic numbering. For example: enter image description here I didnt find any solution online about this ...
Gal Pearl's user avatar
2 votes
1 answer
104 views

I have installed an Angular project using this command ng new --no-standalone my-text-editor and I have followed the instructions on this link Angular Text Editor, after all the steps and running ng-...
Chaker Dorbane's user avatar
1 vote
1 answer
489 views

I have recently started using micro text editor. I would like to turn off syntax highlighting completely. According to the micro documentation, I can create my own syntax configuration file in ~/....
gtj520's user avatar
  • 327
0 votes
0 answers
799 views

I've been working on a project where I created a custom toolbar for EditorJS, aiming to replace the default toolbar. The toolbar is designed to add and remove styles such as bold, italic, etc. I've ...
Nejd Bedoui's user avatar
0 votes
1 answer
1k views

I'm new to nvim and vim in general. been using for about a month. I wasn't really bother about characters only really needed latin-1. However, I've been installing a lot more plugins to customize my ...
soulseeker93's user avatar
0 votes
0 answers
41 views

I have researched back and forth on this issue and so far nothing has worked. I'm unable to open sublime while using git using a command such as sublime. or command line tool named subl. I have used ...
Adam Zahir's user avatar

1
2 3 4 5
44