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
- Tab key could insert 4 spaces like in qtcreator.
- 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; }
#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; }