ATTENTION: You are viewing a page formatted for mobile devices; to view the full web page, click HERE.

News and Reviews > Mini-Reviews by Members

WikidPad - an IDE for your thoughts

<< < (7/8) > >>

Perry Mowbray:
Justice that adds to bottom of the text, is there a way to add to beginning of the text file?
-kartal (April 03, 2008, 02:28 PM)
--- End quote ---

You'd have to (using a batch):
1. write your line of text to a new file
2. write the old file to the new file
3. delete the old file
4. rename the new file to the old file

Or easy enough using a script (VBS,JS,AiT,AHK, etc) to use concatenate the two (in the correct order) and overwrite the original file.

But reading your original question I thought you were wanting to write to a specific Wiki page? If you use the Original Gadfly Database Type then each Page/Word is saved as a different file. Then you'd be able to add text to the end of the file.

kartal:
Perry I use txt based database so yes I can edit the text files. Also Mouser told me in another topic that he had wrote a text appender for FARR, it can add to beginning or ending of a file. I had tested it works great

justice:
echo your text here >> temp.txt
type todo.wiki >> temp.txt
move temp.txt todo.wiki /-y

or create a batch file add.bat:
@echo off
echo %2 >> temp.txt
type %1 >> temp.txt
move temp.txt %1 /-y
--- End quote ---
and then call it like: add.bat todo.wiki "your text here"

edit: oops it's /-y to confirm overwriting if the destination file exists.

kartal:
Here is a nice Wikidpad trick.

You can clone wikidpad with current page (view-clone window)
Now one window will be in edit mode and the other one will be in html preview mode.
When you change your content in edit mode, the next preview window(clone) will also update the content.

Ampa:
First new beta since January released last weekend...

Jul. 27, 2008 (1.9beta16)


* Option to set color of editor margin.
See OptionsDialog#*Margin# color*

* Option to set color of tree background.
See OptionsDialog#++++# Tree# options

* Option to set length of recent wikis list.
See OptionsDialog#*Recent# wikis# list# length*

* Option to store relative pathes to recent wikis.
See OptionsDialog#*Store# relative# pathes# to# wikis*

* Bug fixed: "Open Wiki Word" dialog was sometimes closed
when keeping it open makes more sense

* Bug reduced(?): Linux: Handling of local file URLs to start
applications works better

* Support for all uppercase and lowercase letters in the
Unicode set for creating camel-case wiki words independent of OS language-change log
--- End quote ---

Wish development was a little faster - I am using Wikidpad a lot, but there are a few shortcomings that I'd like to see resolved.

Navigation

[0] Message Index

[#] Next page

[*] Previous page

Go to full version