View Single Post
Posts: 334 | Thanked: 2,004 times | Joined on Oct 2013 @ Fin
#29
Originally Posted by elros34 View Post
Word prediction is only available with virtual keyboard?
Do I need some special package for it? For now I have blank bar above virtual keyboard.
Rebot fixed it
Okay good to hear it started working

Originally Posted by elros34 View Post
- Tab key could insert 4 spaces like in qtcreator.
Hmm, okay What others think? Now it behaves like normal tab button.

Originally Posted by elros34 View Post
- It's impossible to open file directly from terminal using harbour-tide-root.
This one works for me
Code:
#include <stdio.h>
#include <sys/types.h>
#include <unistd.h>

int main(int argc, char *argv[])
{
	if (setuid(0)) {
		perror("setuid");
		return 1;
	} 
    	argv[0] = "/usr/bin/harbour-tide";
    	execv(argv[0], argv);

	return 0;
}
Ohh yea! Thank you! I forgot this one Will add to next release
__________________
necunos.com - Join the movement for freedom of mobile
 

The Following 2 Users Say Thank You to eekkelund For This Useful Post: