I was using notepad++ to create a report and its taking a quite a while for me to type and do so.
Well i had tried a software called typing assistant it was really good(except for the money part :D).
TO the Point :
is there any way tat i can link a dict(text file of words) and use notepad ++ as typing assistant please tell me if so i
can speed my report.
Cause i am a programmer too so i really like the keyword completion and stuff .But is there a way to use it for text ?
already tried Phrase Express -.-:
Takes long and its kinda for macro text and text completion don't work tat fast for me to tab and complete
if there's a question in the form like mine link me to tat :
i searched it and i didn't get it
Yes, you can set up your own custom auto-complete dictionaries in notepad++. You need to create an xml file with your language name and put it under the plugins/APIs directory in notepad++. Of course this assumes you know how to write xml. There's a formal description of how to implement this here.
I've never tried to create an auto-complete dictionary for plain text files, so I'm not sure if it's possible, but I have successfully created them for user-defined languages, which you could also do if you can't get it to work with text files.
I'm not sure if this question is really a duplicate, but here is a very similar one, which may help you in your research.
Related
There are some files like GEDCOM and ADIF that are plain text files, but many people tend to work with them through GUIs. Say I wanted to do data entry on these files directly without any GUI.There are a number of things that make this a little dangerous. Things like misspellings of necessary file-grammar, missing a necessary key, incorrect types for values, etc. There is also something to be said for the additional difficulty of having to type additional characters relative to a GUI.
From what I can tell by thinking about this for 15mins ;) is that having the following would make the job of plain text entry much easier.
A formatter. I think of something like Python's Black which is a CLI that can be run on a file. It can let users know of bad formatting and can provide fixes.
A linter. I think of flake8 to ensure the styling matches the standard.
Autocomplete. The file type examples I showed above have a dictionary of key words. To save on typing it would be nice to have autocomplete.
Syntax Highlighting. Having a way to know if my data entry is good or bad in real-time would be helpful.
It seems like requirements 1-2 could be solved by making a file specific CLIs that combs through plain text files.
Requirement 4 seems IDE specific. vim and vscode allow users to make syntax highlighting plugins. The problem is that this is normally solved by connecting to a language server. When you are not looking for a language server, but for key words and proper values in a plain text file how does let their IDE know that to look for? Is this just a regex soup solution or is there a better way?
Requirement 3 may also be IDE specific, but the same question applies as for requirement 4. When there is not a language server how can I let an IDE know what/how to autocomplete?
Any examples of plain text data entry made easier would be appreciated.
Thanks!
I was wondering if anyone would be able to help me with a small problem. I am looking to start a project to speedup my normal time consuming processes on my computer. Within the code of my 'assistant' I would have all the functions hard coded but I wanted the flexibility of not having to type an exact sentence e.g. 'open sublime text' instead I would like to be able to talk freely and be able to say something along the lines of 'Please open sublime' or 'Can you please open sublime text'. I know that I could do something along the lines of:
if 'sublime' in text_input:
sublime()
The only problem is I have to hard code each one and if any other application have a similar word in the sentence it will perform the first if statement that is met with (if I say google sublime and the if statement for sublime text application is above the google if statement then it will open the application instead of googling it). Is there no simpler way to do this? Something more advanced or easier? Appreciate any help, new to stackoverflow and I am grateful if you could take your time to assist me with my problem.
I'm using Arabic language while designing my website and I want to wrap lines like it displays in Microsoft word (in that there is no line wider/smaller than another)
http://c.top4top.net/p_432s7e8u0.png
Without any example of your code, it's hard to say based on your personal situation but you may be looking for the following CSS property:
word-wrap: break-word
This should wrap your text in an element where this property is applied.
See the following link from W3Schools.
https://www.w3schools.com/cssref/css3_pr_word-wrap.asp
If this isn't what you're looking for, post an example of your code and we can try again!! :)
I'm not too sure whether you're talking about your actual website content or your IDE / Developer Tool. I'd assume the latter as you're talking about javascript and css (which the user wouldn't see on the page) but hey, here's a reference to how to show users it like that (on a website) anyway
"how do you change spacing of words to fit the whole line?"
https://www.cnet.com/forums/discussions/how-do-you-change-spacing-of-words-to-fit-the-whole-line-248002/
For line wrap, I suggest Googling "line wrap " + the tool you're using
For justify, it's likely not supported in the tool you're using, but you can still throw an attempt at Googling "justify text in " + the tool you're using
Note: I'd give more information, but your question lacks detail
So, for some quick background, one of my favorite musicians, Scandroid, put out a riddle that states "If you alter the extension of a new beginning, you can READ what others can only SEE." When you purchased the song from their label's website, you got a bonus picture. the picture was titled "Origins" (New beginning) so i had the idea to convert the .jpg file to a .txt and just see if there was a hidden message. Inside I found some unusual coding that my friend seems to think is in java language, and thinks it may be an audio file because there are some stream commands. unfortunately neither of us have the skill to separate this coding, nor do we know how to use it in the way it was intended. Below is a link to a google doc that contains the segments of the .txt file that seemed unusual to me. Please note, the segments were separated by quite some space inside the txt file. If you would like to take a look at the whole file feel free to give me your E-Mail and i will be glad to send it to you. Thanks in advance - Pat D.
https://docs.google.com/document/d/1nTTfxcrNZRtb9otybuG4VAhJRFlnAmfBnuTDE1o43UM/edit?usp=sharing
Its a pdf file. You should be able to open it with Adobe Acrobat Reader.
Trying to code a basic text editor to play around with Java's file objects and classes.
What I cannot seem to figure out is how to go about developing something like the 'nano' interface. Or 'vim' interface, for that matter.
File creation is not a problem, its editing on the fly, and post-creation editing, that has just got me.
Any ideas?
Edits: Similar questions on Stackoverflow that I found interesting:
1 Text editor theory
User CHARVA
You can get the output like below.
Check out this link http://www.pitman.co.za/projects/charva/index.html