notepad++

PHP Editor that able to trace dependency of all function in a file with models/controllers or another part of a framework (or something we had code)

hello a friend of mind ask something about php editor for his companion on coding. PHP Editor that able to trace dependency of all function in a file with models/controllers or another part of a framework (or something we had code). Basicly we use notepad++ but seeking another alternative. ...

Finding subtitute pluggin (After Switching from Notepad++ to Netbeans 6.8)

i would like to ask about some Notepad++ feature that i couldn't find in netbeans. And this feature is somehow really helpful. It's called 'function list' created by Jens Lorenz. this feature will list all of declared function in a PHP files. So, is there any subtitute plugin that i can use to smooth my migration from Notepad++ to Netb...

Find and Replace with Notepad++

I have a document that was converted from PDF to HTML for use on a company website to be referenced and indexed for search. I'm attempting to format the converted document to meet my needs and in doing so I am attempting to clean up some of the junk that was pulled over from when it was a PDF such as page numbers, headers, and footers. l...

excluding a column in csv file with regex

Is there any way to exclude/delete/replace one field from a csv file with some regexp in notepad++? I have a csv file with some data like this: '1','data1','data2','data3','data4','data5','data6','data7','data8','data9', 'data10','data11','data12','data13','data14','data15','data16','data17','data18', 'data19','data20','data21','data22...

What version of notepad++ should i use? unicode or ansi? i only do web design coding (php/css/html)

Hi what version of notepad++ should i use? unicode or ansi? i only do web design coding (php/css/html) ...

GIT core.editor setup on windows along w application PATH reference

Hey all so i wehnt ahead and opened up my .gitconfig file and manually input the [core] editor = 'C:/Program Files/Notepad++/notepad++.exe' which would allow me to execute command: (im trying to setup my .gitignore list) "C:/Program Files/Notepad++/notepad++.exe" .gitignore im JUSt not interested in typing this out every time t...

What are the advantages of using vim to program Ruby (over Notepad++)? (other languages, too, but specifically Ruby)

I've been using Notepad++ for a while; in fact, I've even started using Launchy for that "load this resource into the editor right now" functionality that many fuller IDE's like Eclipse has. It has syntax highlighting, split window view, code collapsing, parentheses (and other delimiter) paring, automatic indent, block commenting. Howe...

Regex in Notepad++

Hi all, I have a range of files of a specific format. I have pasted an example here. ---------------------------------------------- Attempting to factor n = 160000000000110400000000018963... Found a factor: 400000000000129 Time (s): 18.9561 ---------------------------------------------- Attempting to factor n = 164025000000137700000000...

Replace regular expression with \t in Notepad++

Hi guys, simple example in Notepad++ using RegEx replace search for: anything replace with (wanted): \test guess for regex replace string: \test results in: tabest, so the \t is interpreted as a tab guess for regex replace string: \\test results in: \ tabest, so the first \ is interpreted as a \, the \t is interpreted as a tab guess f...

Code metrics of php - Notepad++

Hello! In particular, I am interested to know how many lines of codes there are, but this spans across many files. I have been using notepad++ to author the code and for each file it does display line numbers but of course I have empty returns to make the code more readable. Does anyone know of a plugin or tool that I can accurately g...

Is there a notepad++ plugin that makes JSP comments format correctly?

I would love Notepad++ to show the comments correctly (see screenshot) Is there any plugin that takes care of it? Or is there any way I can get it to default to another languages' formatting when I load a JSP file? ...

notepad ++ regular regex

I have a document that I have opened in notepad ++ that has the following line, "return 1". I also have cases where it says "return 2" I want to be able to do a find where !return 1. So I want to find and count every thing that is not "return 1" Thanks ...

Weird charcters in java class file when viewed in Notepad++ or Notepad

Hi, I'm trying to view a java class file in Notepad++ or Notepad, it was in a .jar file and I unzipped it, and it has characters like NUL and DC1 and DC2 and SOH and other "gibberish" looking characters...is there a way to fix/avoid this? ...

Google App Engine: Encoding type for CSV?

I am trying to upload data using appcfg.py upload_data. My CSV was encoded as ANSI, but Alex Martelli said that it should probably be UTF-8. So I switched to that (using Notepad++). This hit an error at the very first character of my file: UnicodeDecodeError: 'ascii' codec can't decode byte 0xef in position 0: ordinal not in range(128)...

spaces not being recorded in macro

hi there I'm recording a macro, that supposed to make 3 spaces and than go back to the start point and than go to line below. It used to work with previous version of npp, but now instead of spaces it creates (DC) how to force macro to put spaces instead of (DC) thing? thanks Adam ...

notepad++ regular regex

I have the following text: 3/1 I want to amend it to be: 3/1 port id Thanks ...

How to use hotkey in notepad++ webedit plugin?

How to use hotkey in notepad++ webedit plugin? what are the keyboard shortcuts to press to insert html tags?? ...

Learning php. Hello world won't display using easyphp and writing in notepad++

<html> <!--HTML--> <head><title>a quick test</title></head> <body>a quick test</body> <p>javascript</p> <!--javascript--> <p><script> document.write("hello world") </script></p> <p>php</p> <!--php--> <?php Echo "hello world"; ?> </html> The Hello world works for javascript but not in php, what gives? Any suggestions or obvious e...

NotePad++ replace problem

I have a file with lots of text editing using NotePad++. for example <span class="italic">some text</span><span class="bold">another text or some text</span> I would like to use NotePad++'s regex replace to replace <span class"italic>some text</span> to <i>some text</i> and <span class="bold">another text or some text</span> to <b>...

How do I create a new file with NppExec in Notepad++?

In notepad I would like to create a new file and then put the contents of another file in that new file. This is possible by creating a macro, but the problem is I have to copy-paste the contents, losing whatever was on the clipboard before, and I don't want that. So I looked at NppExec. With NppExec I can put the contents of another fil...