1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831
|
#include "vimCommands.h"
#include "macros.h"
#include "imanager.h"
#include "globals.h"
#include "codelite_events.h"
#include "clMainFrameHelper.h"
/*EXPERIMENTAL*/
#include "wx/uiaction.h"
VimCommand::VimCommand(IManager* m_mgr)
: m_currentCommandPart(COMMAND_PART::REPEAT_NUM)
, m_currentModus(VIM_MODI::NORMAL_MODUS)
, m_commandID(COMMANDVI::NO_COMMAND)
, m_repeat(0)
, m_baseCommand('\0')
, m_actionCommand('\0')
, m_actions(0)
, m_listCopiedStr()
, m_cumulativeUndo(0)
, m_modifierKey(0)
, m_tmpbuf()
, m_searchWord()
, m_newLineCopy(false)
, m_repeatCommand(false)
, m_saveCommand(true)
, m_message_ID(MESSAGES_VIM::NO_ERROR_VIM_MSG)
{
m_ctrl = NULL; /*FIXME: check it*/
this->m_mgr = m_mgr;
}
VimCommand::~VimCommand() {}
MESSAGES_VIM VimCommand::getError() { return m_message_ID; }
void VimCommand::set_current_word(wxString word) { m_searchWord = word; }
/**
*This function is used to update the command
*@return true if the command can be issue
*/
bool VimCommand::OnNewKeyDown(wxChar ch, int modifier)
{
m_message_ID = MESSAGES_VIM::NO_ERROR_VIM_MSG;
bool skip_event = false;
this->m_modifierKey = modifier;
switch(m_currentModus) {
case VIM_MODI::INSERT_MODUS:
insert_modus(ch);
skip_event = true;
break;
// get_text_at_position( ctrl);
// m_currentModus = VIM_MODI::NORMAL_MODUS;
case VIM_MODI::NORMAL_MODUS:
case VIM_MODI::REPLACING_MODUS:
normal_modus(ch);
skip_event = false;
break;
case VIM_MODI::SEARCH_MODUS:
case VIM_MODI::COMMAND_MODUS:
command_modus(ch);
skip_event = false;
break;
case VIM_MODI::VISUAL_MODUS:
visual_modus(ch);
skip_event = false;
break;
default:
break;
}
return skip_event;
}
/**
* This function is used to deal with the Esc press event.
* Mostly it terminates insert/replace mode and push back into
* normal mode
*/
bool VimCommand::OnEscapeDown()
{
m_currentCommandPart = COMMAND_PART::REPEAT_NUM;
m_currentModus = VIM_MODI::NORMAL_MODUS;
m_tmpbuf.Clear();
return true;
}
/**
* used to reset the command.
*/
void VimCommand::ResetCommand()
{
m_currentCommandPart = COMMAND_PART::REPEAT_NUM;
m_repeat = 0;
m_baseCommand = '\0';
m_actionCommand = '\0';
m_actions = 0;
// m_message_ID = MESSAGES_VIM::NO_ERROR;
}
/**
* get for the number of repetition a command has to be issued
* Note: if the command is of <num>+'G' type, the repetition change
* drasically the command, that's why there's a special behaviour.
*/
int VimCommand::getNumRepeat()
{
if(m_baseCommand == 'G' || m_baseCommand == 'g') return 1;
return ((m_repeat > 0) ? m_repeat : 1);
}
/**
*return the modus (insert/normal/serach/visual ...) we are actually working with.
* Use mostly to comunicate with VimManager and differentiate the handliing of
* key event.
*/
VIM_MODI VimCommand::get_current_modus() { return m_currentModus; }
wxString VimCommand::getTmpBuf() { return m_tmpbuf; }
/**
* Getter for the number of action for the modifier command.
* NOTE:
* most of the commands in vi have the following abstract structure:
* <repetition of command > + < base command > + [ <extra> ].
* Some commands have an extra argument made up of <number> + <command>, hier called
* <nAction> + <mActionCmd>.
* ~~~~~~~~~~~~~~~~
* example:
* ~~~~~~~~~~~~~~~~
* command >> 5d3w
* means [5] times [d]elete [3] [w]ords
*/
int VimCommand::getNumActions() { return m_actions; }
void VimCommand::insert_modus(wxChar ch) { m_tmpbuf.Append(ch); }
void VimCommand::completing_command(wxChar ch)
{
const int shift_ashii_num = '0';
switch(m_currentCommandPart) {
case COMMAND_PART::REPEAT_NUM:
if(((ch <= '9' && ch >= '0') && m_repeat != 0) || ((ch <= '9' && ch > '0') && m_repeat == 0)) {
int tmp = (int)ch;
m_repeat = m_repeat * 10 + tmp - shift_ashii_num;
} else {
m_baseCommand = ch;
switch(m_baseCommand) {
case 'R':
m_currentModus = VIM_MODI::REPLACING_MODUS;
m_currentCommandPart = COMMAND_PART::REPLACING;
break;
case ':':
m_currentModus = VIM_MODI::COMMAND_MODUS;
m_tmpbuf.Append(ch);
break;
case '/':
case '?':
m_currentModus = VIM_MODI::SEARCH_MODUS;
m_tmpbuf.Append(ch);
break;
default:
m_currentCommandPart = COMMAND_PART::MOD_NUM;
break;
}
}
break;
case COMMAND_PART::MOD_NUM:
if(ch < '9' && ch > '0' && m_baseCommand != 'r' && m_baseCommand != 'f' && m_baseCommand != 'F' &&
m_baseCommand != 't' && m_baseCommand != 'T') {
m_actions = m_actions * 10 + (int)ch - shift_ashii_num;
} else {
m_actionCommand = ch;
}
break;
default:
break;
}
}
/**
* This function is used to deal with the key event when we are in the
* normal modus.
*/
void VimCommand::normal_modus(wxChar ch)
{
completing_command(ch);
if(m_currentCommandPart == COMMAND_PART::REPLACING) {
m_actionCommand = ch;
}
}
void VimCommand::visual_modus(wxChar ch) { completing_command(ch); }
bool VimCommand::OnReturnDown(VimCommand::eAction& action)
{
bool skip_event = true;
action = kNone;
if(m_currentModus == VIM_MODI::COMMAND_MODUS) {
if(m_tmpbuf == _(":w") || m_tmpbuf == _(":write")) {
action = kSave;
skip_event = false;
m_tmpbuf.Clear();
ResetCommand();
m_currentModus = VIM_MODI::NORMAL_MODUS;
m_message_ID = MESSAGES_VIM::SAVED_VIM_MSG;
} else if(m_tmpbuf == _(":q") || m_tmpbuf == _(":quit")) {
action = kClose;
skip_event = false;
m_tmpbuf.Clear();
ResetCommand();
m_currentModus = VIM_MODI::NORMAL_MODUS;
m_message_ID = MESSAGES_VIM::CLOSED_VIM_MSG;
} else if(m_tmpbuf == _(":q!")) {
action = kClose;
skip_event = false;
m_tmpbuf.Clear();
ResetCommand();
m_currentModus = VIM_MODI::NORMAL_MODUS;
m_message_ID = MESSAGES_VIM::CLOSED_VIM_MSG;
} else if(m_tmpbuf == _(":wq")) {
action = kSaveAndClose;
skip_event = false;
m_tmpbuf.Clear();
ResetCommand();
m_currentModus = VIM_MODI::NORMAL_MODUS;
m_message_ID = MESSAGES_VIM::SAVE_AND_CLOSE_VIM_MSG;
} else if(m_tmpbuf[0].GetValue() == ':') {
skip_event = false;
parse_cmd_string();
m_tmpbuf.Clear();
m_currentModus = VIM_MODI::NORMAL_MODUS;
ResetCommand();
}
} else if(m_currentModus == VIM_MODI::SEARCH_MODUS) {
skip_event = false;
parse_cmd_string();
m_tmpbuf.Clear();
ResetCommand();
m_currentModus = VIM_MODI::NORMAL_MODUS;
} else if (m_currentModus == VIM_MODI::NORMAL_MODUS){
m_ctrl->LineDown();
skip_event = false;
}
return skip_event;
}
wxString VimCommand::getSearchedWord() {
return m_searchWord;
}
void VimCommand::parse_cmd_string()
{
bool all_file = false;
bool search_forward = false;
bool search_backward = false;
bool replace = false;
size_t len_buf = m_tmpbuf.Length();
wxString word_to_replace;
m_searchWord.Clear();
for(size_t i = 0; i < len_buf; ++i) {
switch(m_tmpbuf[i].GetValue()) {
case '%':
if(i + 1 < len_buf && m_tmpbuf[i + 1].GetValue() == 's') {
all_file = true;
}
break;
case '/':
replace = search_forward;
search_forward = true;
break;
case '?':
replace = search_backward;
search_backward = true;
break;
default:
if(search_forward || search_backward)
m_searchWord.Append(m_tmpbuf[i]);
else if(replace)
word_to_replace.Append(m_tmpbuf[i]);
break;
}
}
if(search_forward && !replace) {
m_message_ID = MESSAGES_VIM::SEARCHING_WORD;
long pos = -1L;
if(all_file) pos = 0L;
search_word(SEARCH_DIRECTION::FORWARD, pos);
//m_mgr->FindAndSelect(m_searchWord, m_searchWord, pos);
} else if(search_backward && !replace) {
m_message_ID = MESSAGES_VIM::SEARCHING_WORD;
long pos = -1L;
if(all_file) pos = 0L;
search_word(SEARCH_DIRECTION::BACKWARD, pos);
//m_mgr->FindAndSelect(m_searchWord, m_searchWord, pos)
}
}
/**
* function dealing with the command status (i.e. ": ... " )
*/
void VimCommand::command_modus(wxChar ch) { m_tmpbuf.Append(ch); }
/**
* This function call on the controller of the actual editor the vim-command.
* Here is the actual implementation of the binding.
*/
bool VimCommand::Command_call()
{
if(m_currentModus == VIM_MODI::VISUAL_MODUS) {
return Command_call_visual_mode();
}
wxUIActionSimulator sim;
bool repeat_command = true;
this->m_saveCommand = true;
switch(m_commandID) {
/*======= MOVEMENT ===========*/
case COMMANDVI::j:
m_ctrl->LineDown();
this->m_saveCommand = false;
break;
case COMMANDVI::k:
m_ctrl->LineUp();
this->m_saveCommand = false;
break;
case COMMANDVI::h:
m_ctrl->CharLeft();
this->m_saveCommand = false;
break;
case COMMANDVI::l:
m_ctrl->CharRight();
this->m_saveCommand = false;
break;
case COMMANDVI::_0:
m_ctrl->Home();
this->m_saveCommand = false;
break;
case COMMANDVI::_$:
m_ctrl->LineEnd();
m_ctrl->CharLeft();
this->m_saveCommand = false;
break;
case COMMANDVI::w:
m_ctrl->WordRight();
this->m_saveCommand = false;
break;
case COMMANDVI::W: {
bool single_word = is_space_following();
m_ctrl->WordRight();
if(!single_word) {
bool next_is_space = is_space_following();
while(!next_is_space) {
m_ctrl->WordRight();
next_is_space = is_space_following();
}
m_ctrl->WordRight();
}
/*FIME - is a sequence of white space rightly jumped?*/
this->m_saveCommand = false;
break;
}
case COMMANDVI::b:
m_ctrl->WordLeft();
this->m_saveCommand = false;
break;
/*FIXME*/
case COMMANDVI::B: {
m_ctrl->WordLeft();
bool prev_is_space = is_space_preceding(false, true);
while(!prev_is_space) {
m_ctrl->WordLeft();
prev_is_space = is_space_preceding(false, true);
}
this->m_saveCommand = false;
break;
}
case COMMANDVI::e: {
long pos = m_ctrl->GetCurrentPos();
long end = m_ctrl->WordEndPosition(pos, false);
if(pos >= end - 1) {
m_ctrl->WordRight();
long i = 1;
pos = m_ctrl->GetCurrentPos();
end = m_ctrl->WordEndPosition(pos, false);
while(m_ctrl->GetCharAt(end + i) == ' ') {
i++;
end = m_ctrl->WordEndPosition(pos + i, false);
}
}
m_ctrl->GotoPos(end - 1);
this->m_saveCommand = false;
break;
}
case COMMANDVI::E: {
bool single_word = is_space_following();
m_ctrl->WordRight();
if(!single_word) {
bool next_is_space = is_space_following();
while(!next_is_space) {
m_ctrl->WordRight();
next_is_space = is_space_following();
}
// m_ctrl->WordRight();
}
/*FIME - is a sequence of white space rightly jumped?*/
this->m_saveCommand = false;
long pos = m_ctrl->GetCurrentPos();
long end = m_ctrl->WordEndPosition(pos, false);
if(pos == end - 1) {
m_ctrl->WordRight();
long i = 1;
pos = m_ctrl->GetCurrentPos();
end = m_ctrl->WordEndPosition(pos, false);
while(m_ctrl->GetCharAt(end + i) == ' ') {
i++;
end = m_ctrl->WordEndPosition(pos + i, false);
}
}
m_ctrl->GotoPos(end - 1);
break;
}
case COMMANDVI::F: {
long i = 1;
long pos = m_ctrl->GetCurrentPos();
bool eoline = false;
char cur_char;
while((cur_char = m_ctrl->GetCharAt(pos - i)) != m_actionCommand) {
if(cur_char == '\n') {
eoline = true;
break;
}
++i;
}
if(eoline != true) m_ctrl->GotoPos(pos - i);
} break;
case COMMANDVI::f: {
long i = 1;
long pos = m_ctrl->GetCurrentPos();
bool eoline = false;
char cur_char;
while((cur_char = m_ctrl->GetCharAt(pos + i)) != m_actionCommand) {
if(cur_char == '\n') {
eoline = true;
break;
}
++i;
}
if(eoline != true) m_ctrl->GotoPos(pos + i);
} break;
case COMMANDVI::T: {
long i = 1;
long pos = m_ctrl->GetCurrentPos();
bool eoline = false;
char cur_char;
while((cur_char = m_ctrl->GetCharAt(pos - i)) != m_actionCommand) {
if(cur_char == '\n') {
eoline = true;
break;
}
++i;
}
if(eoline != true) m_ctrl->GotoPos(pos - i + 1);
} break;
case COMMANDVI::t: {
long i = 1;
long pos = m_ctrl->GetCurrentPos();
bool eoline = false;
char cur_char;
while((cur_char = m_ctrl->GetCharAt(pos + i)) != m_actionCommand) {
if(cur_char == '\n') {
eoline = true;
break;
}
++i;
}
if(eoline != true) m_ctrl->GotoPos(pos + i - 1);
} break;
case COMMANDVI::ctrl_D:
m_ctrl->PageDown();
this->m_saveCommand = false;
break;
case COMMANDVI::ctrl_U:
m_ctrl->PageUp();
this->m_saveCommand = false;
break;
case COMMANDVI::G: /*====== START G =======*/
this->m_saveCommand = false;
switch(m_repeat) {
case 0:
m_ctrl->DocumentEnd();
break;
case 1:
m_ctrl->DocumentStart();
break;
default:
m_ctrl->GotoLine(m_repeat - 1);
break;
}
break; /*~~~~~~~ END G ~~~~~~~~*/
case COMMANDVI::gg: /*====== START G =======*/
this->m_saveCommand = false;
if(m_repeat == 0) {
m_repeat = 1;
}
m_ctrl->GotoLine(m_repeat - 1);
repeat_command = false;
break;
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
/*========= PUT IN INSERT MODE =============*/
case COMMANDVI::i:
this->m_tmpbuf.Clear();
break;
case COMMANDVI::I:
this->m_tmpbuf.Clear();
m_ctrl->Home();
break;
case COMMANDVI::a:
this->m_tmpbuf.Clear();
m_ctrl->CharRight();
break;
case COMMANDVI::A:
this->m_tmpbuf.Clear();
m_ctrl->LineEnd();
break;
case COMMANDVI::o:
this->m_tmpbuf.Clear();
m_ctrl->LineEnd();
m_ctrl->NewLine();
break;
case COMMANDVI::O:
this->m_tmpbuf.Clear();
m_ctrl->LineUp();
m_ctrl->LineEnd();
m_ctrl->NewLine();
break;
/*=============== VISUAL MODE ===============*/
case COMMANDVI::v:
m_currentModus = VIM_MODI::VISUAL_MODUS;
this->m_tmpbuf.Clear();
break;
case COMMANDVI::perc: {
long pos_matching = goToMatchingParentesis(m_ctrl->GetCurrentPos());
if(pos_matching != -1)
m_ctrl->GotoPos(pos_matching);
else
m_message_ID = MESSAGES_VIM::UNBALNCED_PARENTESIS_VIM_MSG;
// FIXME:
// sim.Char(']', wxMOD_SHIFT);
// wxYield();
} break;
/*========= UNDO =============*/
/* FIXME: the undo works strange with 'r' command*/
case COMMANDVI::u:
m_ctrl->Undo();
break;
/*======== REPLACE ===========*/
case COMMANDVI::r:
this->m_tmpbuf.Clear();
m_ctrl->CharRight();
m_ctrl->DeleteBackNotLine();
m_ctrl->AddText(m_actionCommand);
break;
case COMMANDVI::R:
this->m_tmpbuf.Clear();
m_ctrl->CharRight();
m_ctrl->DeleteBackNotLine();
m_ctrl->AddText(m_actionCommand);
repeat_command = false;
break;
case COMMANDVI::cw:
this->m_tmpbuf.Clear();
for( int i = 0; i < m_actions; ++i )
m_ctrl->DelWordRight();
break;
case COMMANDVI::cb:
this->m_tmpbuf.Clear();
for( int i = 0; i < m_actions; ++i )
m_ctrl->DelWordLeft();
break;
case COMMANDVI::ce:
this->m_tmpbuf.Clear();
for( int i = 0; i < m_actions; ++i )
m_ctrl->DelWordRightEnd();
break;
case COMMANDVI::S: {
this->m_tmpbuf.Clear();
int repeat_S = std::max(1, m_repeat);
for(int i = 0; i < repeat_S; ++i) {
m_ctrl->LineDelete();
}
m_ctrl->NewLine();
m_ctrl->LineUp();
break;
}
case COMMANDVI::C:
m_ctrl->DelLineRight();
if(m_repeat > 1) {
m_ctrl->LineDown();
for(int i = 0; i < m_repeat - 1; ++i) { // delete extra line if [num]C
m_ctrl->LineDelete();
}
m_ctrl->LineUp();
m_ctrl->LineEnd();
}
repeat_command = false;
break;
case COMMANDVI::cc: {
int repeat_cc = std::max(1, m_repeat) * std::max(1, m_actions);
for(int i = 0; i < repeat_cc; ++i) {
m_ctrl->LineDelete();
}
// m_ctrl->NewLine();
repeat_command = false;
} break;
case COMMANDVI::x:
this->m_tmpbuf.Clear();
m_ctrl->CharRight();
m_ctrl->DeleteBackNotLine();
break;
case COMMANDVI::X:
this->m_tmpbuf.Clear();
m_ctrl->CharRight();
m_ctrl->CharRight();
m_ctrl->DeleteBackNotLine();
break;
case COMMANDVI::dw: {
int repeat_dw = std::max(1, m_actions);
for(int i = 0; i < repeat_dw; ++i) {
m_listCopiedStr.push_back(get_text_at_position(kFromPosToEndWord));
if(is_space_following()) m_listCopiedStr.push_back(add_following_spaces());
m_newLineCopy = false;
m_ctrl->DelWordRight();
}
} break;
case COMMANDVI::db: {
int pos_init_db = m_ctrl->GetCurrentPos();
int repeat_db = std::max(1, m_repeat) * std::max(1, m_actions);
for(int i = 0; i < repeat_db; ++i) {
m_ctrl->WordLeft();
}
int pos_end_db = m_ctrl->GetCurrentPos();
m_listCopiedStr.push_back(m_ctrl->GetTextRange(pos_init_db, pos_end_db));
m_ctrl->SetCurrentPos(pos_init_db);
for(int i = 0; i < repeat_db; ++i) {
m_ctrl->DelWordLeft();
}
repeat_command = false;
m_newLineCopy = false;
} break;
case COMMANDVI::de: {
int repeat_de = std::max(1, m_actions);
for(int i = 0; i < repeat_de - 1; ++i) {
m_listCopiedStr.push_back(get_text_at_position(kFromPosToEndWord));
if(is_space_following()) m_listCopiedStr.push_back(add_following_spaces());
m_newLineCopy = false;
m_ctrl->DelWordRight();
} // last only the end of the word!
m_listCopiedStr.push_back(get_text_at_position(kFromPosToEndWord));
m_newLineCopy = false;
m_ctrl->DelWordRightEnd();
} break;
case COMMANDVI::dd: {
int repeat_dd = std::max(1, m_actions);
int linePos;
for(int i = 0; i < repeat_dd; ++i) {
this->m_listCopiedStr.push_back(m_ctrl->GetCurLine(&linePos));
m_ctrl->LineDelete();
}
} break;
case COMMANDVI::D:
this->m_listCopiedStr.push_back(get_text_at_position(kFromPositionToEndLine));
m_ctrl->DelLineRight();
break;
/*=============== COPY ====================*/
case COMMANDVI::yw: {
int pos_init_yw = m_ctrl->GetCurrentPos();
int repeat_yw = std::max(1, m_repeat) * std::max(1, m_actions);
for(int i = 0; i < repeat_yw; ++i) {
m_ctrl->WordRight();
}
int pos_end_yw = m_ctrl->GetCurrentPos();
m_listCopiedStr.push_back(m_ctrl->GetTextRange(pos_init_yw, pos_end_yw));
repeat_command = false;
m_ctrl->SetCurrentPos(pos_init_yw);
m_ctrl->CharLeft();
m_ctrl->CharRight();
m_newLineCopy = false;
} break;
case COMMANDVI::yb: {
int pos_init_yb = m_ctrl->GetCurrentPos();
int repeat_yb = std::max(1, m_repeat) * std::max(1, m_actions);
for(int i = 0; i < repeat_yb; ++i) {
m_ctrl->WordLeft();
}
int pos_end_yb = m_ctrl->GetCurrentPos();
m_listCopiedStr.push_back(m_ctrl->GetTextRange(pos_init_yb, pos_end_yb));
repeat_command = false;
m_ctrl->SetCurrentPos(pos_init_yb);
m_ctrl->CharLeft();
m_ctrl->CharRight();
m_newLineCopy = false;
} break;
case COMMANDVI::ye: {
int pos_init_ye = m_ctrl->GetCurrentPos();
int repeat_ye = std::max(1, m_repeat) * std::max(1, m_actions);
for(int i = 0; i < repeat_ye; ++i) {
m_ctrl->WordLeftEnd();
}
int pos_end_ye = m_ctrl->GetCurrentPos();
m_listCopiedStr.push_back(m_ctrl->GetTextRange(pos_init_ye, pos_end_ye));
repeat_command = false;
m_ctrl->SetCurrentPos(pos_init_ye);
m_ctrl->CharLeft();
m_ctrl->CharRight();
m_newLineCopy = false;
} break;
case COMMANDVI::yy: {
int position_init_yy = m_ctrl->GetCurrentPos();
int linePos;
int repeat_yy = std::max(1, m_repeat) * std::max(1, m_actions);
for(int i = 0; i < repeat_yy; ++i) {
this->m_listCopiedStr.push_back(m_ctrl->GetCurLine(&linePos));
m_ctrl->LineDown();
}
repeat_command = false;
m_ctrl->SetCurrentPos(position_init_yy);
m_ctrl->CharLeft();
m_ctrl->CharRight();
} break;
case COMMANDVI::diesis: {
m_searchWord = get_text_at_position();
// m_ctrl->SetCurrentPos( /*FIXME*/ );
search_word(SEARCH_DIRECTION::BACKWARD);
m_message_ID = MESSAGES_VIM::SEARCHING_WORD;
} break;
/*
case COMMANDVI::slesh:
//sim.Char('F', wxMOD_CONTROL);
m_currentModus = VIM_MODI::SEARCH_MODUS;
//wxYield();
this->m_saveCommand = false;
break;
*/
case COMMANDVI::N:
search_word(SEARCH_DIRECTION::BACKWARD);
m_message_ID = MESSAGES_VIM::SEARCHING_WORD;
this->m_saveCommand = false;
break;
case COMMANDVI::n:
search_word(SEARCH_DIRECTION::FORWARD);
this->m_saveCommand = false;
m_message_ID = MESSAGES_VIM::SEARCHING_WORD;
break;
/*=============================== PASTE =========================*/
case COMMANDVI::p: /*FIXME CharLeft goes the previous line if at position 0!*/
this->m_saveCommand = false;
if(this->m_newLineCopy) {
m_ctrl->LineEnd();
m_ctrl->NewLine();
}
for(std::vector<wxString>::iterator yanked = this->m_listCopiedStr.begin();
yanked != this->m_listCopiedStr.end(); ++yanked) {
m_ctrl->AddText(*yanked);
}
// FIXME: troppo contorto!
if(this->m_newLineCopy) m_ctrl->LineDelete();
break;
case COMMANDVI::P:
this->m_saveCommand = false;
if(this->m_newLineCopy) {
m_ctrl->LineUp();
m_ctrl->LineEnd();
m_ctrl->NewLine();
} else {
m_ctrl->CharLeft(); /*Is one char before andd the the same as p!*/
}
for(std::vector<wxString>::iterator yanked = this->m_listCopiedStr.begin();
yanked != this->m_listCopiedStr.end(); ++yanked) {
m_ctrl->AddText(*yanked);
}
// FIXME: troppo contorto!
if(this->m_newLineCopy) m_ctrl->LineDelete();
break;
case COMMANDVI::repeat:
// RepeatCommand( m_ctrl );
this->m_saveCommand = false;
this->m_repeatCommand = true;
break;
{
case COMMANDVI::J:
int curr_pos = m_ctrl->GetCurrentPos();
m_ctrl->LineDown();
m_ctrl->Home();
m_ctrl->DeleteBack();
m_ctrl->SetCurrentPos(curr_pos);
/*FIXME: Workaround to avoid selection between previous
end of line and current position*/
m_ctrl->CharLeft();
m_ctrl->CharRight();
break;
}
default:
repeat_command = false;
break;
}
return repeat_command;
}
bool VimCommand::Command_call_visual_mode()
{
wxUIActionSimulator sim;
bool repeat_command = true;
this->m_saveCommand = true;
switch(m_commandID) {
/*======= MOVEMENT ===========*/
case COMMANDVI::j:
m_ctrl->LineDownExtend();
this->m_saveCommand = false;
break;
case COMMANDVI::k:
m_ctrl->LineUpExtend();
this->m_saveCommand = false;
break;
case COMMANDVI::h:
m_ctrl->CharLeftExtend();
this->m_saveCommand = false;
break;
case COMMANDVI::l:
m_ctrl->CharRightExtend();
this->m_saveCommand = false;
break;
case COMMANDVI::_0:
m_ctrl->HomeExtend();
this->m_saveCommand = false;
break;
case COMMANDVI::_$:
m_ctrl->LineEndExtend();
this->m_saveCommand = false;
break;
case COMMANDVI::w:
m_ctrl->WordRightExtend();
this->m_saveCommand = false;
break;
/*CHECK-ME*/
case COMMANDVI::W: {
bool single_word = is_space_following();
m_ctrl->WordRightExtend();
if(!single_word) {
bool next_is_space = is_space_following();
while(!next_is_space) {
m_ctrl->WordRightExtend();
next_is_space = is_space_following();
}
m_ctrl->WordRightExtend();
}
/*FIME - is a sequence of white space rightly jumped?*/
this->m_saveCommand = false;
break;
}
case COMMANDVI::b:
m_ctrl->WordLeftExtend();
this->m_saveCommand = false;
break;
/*FIXME*/
case COMMANDVI::B: {
m_ctrl->WordLeft();
bool prev_is_space = is_space_preceding(false, true);
while(!prev_is_space) {
m_ctrl->WordLeft();
prev_is_space = is_space_preceding(false, true);
}
this->m_saveCommand = false;
break;
}
case COMMANDVI::e: {
long pos = m_ctrl->GetCurrentPos();
long end = m_ctrl->WordEndPosition(pos, false);
if(pos == end) {
m_ctrl->WordRight();
pos = m_ctrl->GetCurrentPos();
end = m_ctrl->WordEndPosition(pos, false);
}
m_ctrl->SetCurrentPos(end);
break;
}
case COMMANDVI::E: {
bool single_word = is_space_following();
m_ctrl->WordRight();
if(!single_word) {
bool next_is_space = is_space_following();
while(!next_is_space) {
m_ctrl->WordRight();
next_is_space = is_space_following();
}
//_ctrl->WordRight();
}
/*FIME - is a sequence of white space rightly jumped?*/
this->m_saveCommand = false;
long pos = m_ctrl->GetCurrentPos();
long end = m_ctrl->WordEndPosition(pos, false);
if(pos == end - 1) {
m_ctrl->WordRight();
long i = 1;
pos = m_ctrl->GetCurrentPos();
end = m_ctrl->WordEndPosition(pos, false);
while(m_ctrl->GetCharAt(end + i) == ' ') {
i++;
end = m_ctrl->WordEndPosition(pos + i, false);
}
}
m_ctrl->GotoPos(end - 1);
break;
}
case COMMANDVI::F: {
long i = 1;
long pos = m_ctrl->GetCurrentPos();
bool eoline = false;
char cur_char;
while((cur_char = m_ctrl->GetCharAt(pos - i)) != m_actionCommand) {
if(cur_char == '\n') {
eoline = true;
break;
}
++i;
}
if(eoline != true) m_ctrl->SetCurrentPos(pos - i);
} break;
case COMMANDVI::f: {
long i = 1;
long pos = m_ctrl->GetCurrentPos();
bool eoline = false;
char cur_char;
while((cur_char = m_ctrl->GetCharAt(pos + i)) != m_actionCommand) {
if(cur_char == '\n') {
eoline = true;
break;
}
++i;
}
if(eoline != true) m_ctrl->SetCurrentPos(pos + i);
} break;
case COMMANDVI::T: {
long i = 1;
long pos = m_ctrl->GetCurrentPos();
bool eoline = false;
char cur_char;
while((cur_char = m_ctrl->GetCharAt(pos - i)) != m_actionCommand) {
if(cur_char == '\n') {
eoline = true;
break;
}
++i;
}
if(eoline != true) m_ctrl->SetCurrentPos(pos - i + 1);
} break;
case COMMANDVI::t: {
long i = 1;
long pos = m_ctrl->GetCurrentPos();
bool eoline = false;
char cur_char;
while((cur_char = m_ctrl->GetCharAt(pos + i)) != m_actionCommand) {
if(cur_char == '\n') {
eoline = true;
break;
}
++i;
}
if(eoline != true) m_ctrl->SetCurrentPos(pos + i - 1);
} break;
case COMMANDVI::G: /*====== START G =======*/
{
/*FIXME extend section*/
this->m_saveCommand = false;
switch(m_repeat) {
case 0:
m_ctrl->DocumentEndExtend();
break;
case 1:
m_ctrl->DocumentStartExtend();
break;
default:
// m_ctrl->SetSelectionStart( m_ctrl->GetCurrentPos() );
// m_ctrl->GotoLine(m_repeat - 1);
// m_ctrl->SetSelectionEnd( m_ctrl->GetCurrentPos() );
break;
}
} break; /*~~~~~~~ END G ~~~~~~~~*/
case COMMANDVI::gg: /*====== START G =======*/
{
/*// FIXME extend section*/
// this->m_saveCommand = false;
// if(m_repeat == 0) {
// m_repeat = 1;
// }
// //m_ctrl->SetSelectionStart( m_ctrl->GetCurrentPos() );
// m_ctrl->GotoLine(m_repeat - 1);
// m_ctrl->SetSelectionEnd( m_ctrl->GetCurrentPos() );
// repeat_command = false;
} break;
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
/*========== DELETE AND COPY =======================*/
case COMMANDVI::d:
this->m_listCopiedStr.push_back(m_ctrl->GetSelectedText());
m_ctrl->DeleteBack(); /*? better use Clear()*/
this->m_saveCommand = false; /*FIXME: check what is vim-behaviour*/
m_currentModus = VIM_MODI::NORMAL_MODUS;
break;
case COMMANDVI::y:
this->m_listCopiedStr.push_back(m_ctrl->GetSelectedText());
this->m_saveCommand = false; /*FIXME: check what is vim-behaviour*/
m_currentModus = VIM_MODI::NORMAL_MODUS;
break;
default:
break;
}
return repeat_command;
}
wxString VimCommand::get_text_at_position(VimCommand::eTypeTextSearch typeTextToSearch)
{
long pos, start, end;
pos = m_ctrl->GetCurrentPos();
switch(typeTextToSearch) {
case kAllWord:
start = m_ctrl->WordStartPosition(pos, true);
end = m_ctrl->WordEndPosition(pos, true);
break;
case kFromPosToEndWord:
start = pos;
end = m_ctrl->WordEndPosition(pos, true);
if(start == end) {
end++;
}
break;
case kFromPosToBeginWord:
end = pos;
start = m_ctrl->WordStartPosition(pos, true);
if(start == end) {
start--;
}
break;
case kFromPositionToEndLine:
start = pos;
end = m_ctrl->GetLineEndPosition(m_ctrl->GetCurrentLine());
break;
case kFromPositionToBeginLine:
end = pos;
start = m_ctrl->PositionFromLine(m_ctrl->GetCurrentLine());
break;
}
return m_ctrl->GetTextRange(start, end);
}
bool VimCommand::is_space_following()
{
long pos = m_ctrl->GetCurrentPos();
if(m_ctrl->GetCharAt(pos + 1) == ' ') return true;
long end = m_ctrl->WordEndPosition(pos, true);
if(m_ctrl->GetCharAt(end) == ' ') return true;
return false;
}
/*FIXME start is right pos?
* @return true is a space preciding or we reached the start of the file*/
bool VimCommand::is_space_preceding(bool onlyWordChar, bool cross_line)
{
long pos = m_ctrl->GetCurrentPos();
if(pos == 0) return true;
long start = m_ctrl->WordStartPosition(pos, onlyWordChar);
if(m_ctrl->GetCharAt(start) == ' ') return true;
if(cross_line && m_ctrl->GetCharAt(start) == '\n') return true;
return false;
}
wxString VimCommand::add_following_spaces()
{
wxString white_spaces_buf;
long pos = m_ctrl->GetCurrentPos();
long end = m_ctrl->WordEndPosition(pos, true);
while(m_ctrl->GetCharAt(end) == ' ') {
white_spaces_buf.Append(' ');
end++;
}
return white_spaces_buf;
}
/*FIXME start is right pos*/
wxString VimCommand::add_preceding_spaces()
{
wxString white_spaces_buf;
long pos = m_ctrl->GetCurrentPos();
long start = m_ctrl->WordStartPosition(pos, true);
while(m_ctrl->GetCharAt(start) == ' ') {
white_spaces_buf.Append(' ');
start--;
}
return white_spaces_buf;
}
bool VimCommand::search_word(SEARCH_DIRECTION direction, long start_pos)
{
// /*flag 2: word separated, Big pr small!*/
// /*flag 3: same as before*/
// /*flag 1-0: from the find other*/
long pos;
if(start_pos == -1) {
pos = m_ctrl->GetCurrentPos();
} else {
pos = start_pos;
}
m_mgr->GetStatusBar()->SetMessage("Searching:" + m_searchWord);
bool found = false;
int flag = 0;
int pos_prev;
if(direction == SEARCH_DIRECTION::BACKWARD) {
pos_prev = m_ctrl->FindText(0, pos, m_searchWord, flag);
} else {
pos_prev = m_ctrl->FindText(pos, m_ctrl->GetTextLength(), m_searchWord, flag);
m_ctrl->SetCurrentPos(pos);
}
m_ctrl->SearchAnchor();
if(pos_prev != wxNOT_FOUND) {
int pos_word;
if(direction == SEARCH_DIRECTION::BACKWARD) {
pos_word = m_ctrl->SearchPrev(flag, m_searchWord);
m_ctrl->GotoPos(pos_word);
} else {
pos_word = m_ctrl->SearchNext(flag, m_searchWord);
/*FIXME error searching next: we get the current*/
m_ctrl->GotoPos(pos_word + 1);
}
evidentiate_word();
found = true;
} else {
found = false;
}
return found;
}
bool VimCommand::search_word(SEARCH_DIRECTION direction)
{
// /*flag 2: word separated, Big pr small!*/
// /*flag 3: same as before*/
// /*flag 1-0: from the find other*/
long pos = m_ctrl->GetCurrentPos();
bool found = false;
int flag = 0;
int pos_prev;
if(direction == SEARCH_DIRECTION::BACKWARD) {
pos_prev = m_ctrl->FindText(0, pos, m_searchWord, flag);
} else {
m_ctrl->CharRight();
int pos_end_word = m_ctrl->WordEndPosition(pos, true);
pos_prev = m_ctrl->FindText(pos_end_word + 1, m_ctrl->GetTextLength(), m_searchWord, flag);
m_ctrl->SetCurrentPos(pos_end_word);
}
m_ctrl->SearchAnchor();
if(pos_prev != wxNOT_FOUND) {
int pos_word;
if(direction == SEARCH_DIRECTION::BACKWARD) {
pos_word = m_ctrl->SearchPrev(flag, m_searchWord);
m_ctrl->GotoPos(pos_word);
} else {
pos_word = m_ctrl->SearchNext(flag, m_searchWord);
/*FIXME error searching next: we get the current*/
m_ctrl->GotoPos(pos_word + 1);
}
evidentiate_word();
found = true;
} else {
found = false;
}
return found;
}
void VimCommand::evidentiate_word()
{
long pos = m_ctrl->GetCurrentPos();
long start = m_ctrl->WordStartPosition(pos, true);
long end = m_ctrl->WordEndPosition(pos, true);
m_ctrl->SetSelectionStart(start);
m_ctrl->SetSelectionEnd(end);
}
/**
* This function is used to check when a command is complete.
* In this case it is assign a unque command_id, which will be used by the
* function Command_call().
*/
bool VimCommand::is_cmd_complete()
{
bool command_complete = false;
bool possible_command = false;
switch(m_baseCommand) {
/*========================== MOVEMENT =========================*/
{
case 'j':
possible_command = true;
m_commandID = COMMANDVI::j;
command_complete = true;
break;
case 'h':
possible_command = true;
m_commandID = COMMANDVI::h;
command_complete = true;
break;
case 'l':
possible_command = true;
m_commandID = COMMANDVI::l;
command_complete = true;
break;
case 'k':
possible_command = true;
m_commandID = COMMANDVI::k;
command_complete = true;
break;
case '$':
possible_command = true;
m_commandID = COMMANDVI::_$;
command_complete = true;
break;
case '0':
possible_command = true;
m_commandID = COMMANDVI::_0;
command_complete = true;
break;
case 'w':
possible_command = true;
m_commandID = COMMANDVI::w;
command_complete = true;
break;
case 'W':
possible_command = true;
m_commandID = COMMANDVI::W;
command_complete = true;
break;
case 'b':
possible_command = true;
m_commandID = COMMANDVI::b;
command_complete = true;
break;
case 'B':
possible_command = true;
m_commandID = COMMANDVI::B;
command_complete = true;
break;
case 'e':
possible_command = true;
m_commandID = COMMANDVI::e;
command_complete = true;
break;
case 'E':
possible_command = true;
m_commandID = COMMANDVI::E;
command_complete = true;
break;
case 'f':
possible_command = true;
m_commandID = COMMANDVI::f;
if(this->m_actionCommand != '\0') {
command_complete = true;
}
break;
case 'F':
possible_command = true;
m_commandID = COMMANDVI::F;
command_complete = false;
if(this->m_actionCommand != '\0') {
command_complete = true;
}
break;
case 't':
possible_command = true;
m_commandID = COMMANDVI::t;
if(this->m_actionCommand != '\0') {
command_complete = true;
}
break;
case 'T':
possible_command = true;
m_commandID = COMMANDVI::T;
command_complete = false;
if(this->m_actionCommand != '\0') {
command_complete = true;
}
break;
case 'G':
possible_command = true;
m_commandID = COMMANDVI::G;
command_complete = true;
break;
case 'g':
possible_command = true;
if(this->m_actionCommand == 'g') {
m_commandID = COMMANDVI::gg;
command_complete = true;
}
break;
}
/*===================== CANGE INTO INSER ====================*/
{
case 'i':
possible_command = true;
m_commandID = COMMANDVI::i;
m_currentModus = VIM_MODI::INSERT_MODUS;
command_complete = true;
m_repeat = 1;
break;
case 'I':
possible_command = true;
m_commandID = COMMANDVI::I;
m_currentModus = VIM_MODI::INSERT_MODUS;
command_complete = true;
m_repeat = 1;
break;
case 'a':
possible_command = true;
m_commandID = COMMANDVI::a;
m_currentModus = VIM_MODI::INSERT_MODUS;
command_complete = true;
m_repeat = 1;
break;
case 'A':
possible_command = true;
m_commandID = COMMANDVI::A;
m_currentModus = VIM_MODI::INSERT_MODUS;
command_complete = true;
m_repeat = 1;
break;
case 'o':
possible_command = true;
m_commandID = COMMANDVI::o;
m_currentModus = VIM_MODI::INSERT_MODUS;
command_complete = true;
m_repeat = 1;
break;
case 'O':
possible_command = true;
m_commandID = COMMANDVI::O;
m_currentModus = VIM_MODI::INSERT_MODUS;
command_complete = true;
m_repeat = 1;
break;
}
/*================== CHANGE INTO VISUAL MODE ================*/
case 'v':
possible_command = true;
m_commandID = COMMANDVI::v;
// m_currentModus = VIM_MODI::VISUAL_MODUS;
command_complete = true;
m_repeat = 1;
break;
case '%':
possible_command = true;
m_commandID = COMMANDVI::perc;
command_complete = true;
m_repeat = 1;
break;
/*===================== UNDO ====================*/
case 'u':
possible_command = true;
m_commandID = COMMANDVI::u;
command_complete = true;
break;
/*==================== REPLACE =================*/
case 'r':
possible_command = true;
if(m_actionCommand == '\0') {
command_complete = false;
} else {
command_complete = true;
m_commandID = COMMANDVI::r;
}
break;
case 'R':
possible_command = true;
if(m_actionCommand == '\0') {
command_complete = false;
} else {
command_complete = true;
m_commandID = COMMANDVI::R;
}
break;
/*===================== DELETE TEXT ===============*/
case 'c': /*~~~~~~ c[...] ~~~~~~~*/
possible_command = true;
switch(m_actionCommand) {
case '\0':
command_complete = false;
break;
case 'w':
command_complete = true;
m_commandID = COMMANDVI::cw;
m_currentModus = VIM_MODI::INSERT_MODUS;
break;
case 'c':
command_complete = true;
m_commandID = COMMANDVI::cc;
m_currentModus = VIM_MODI::INSERT_MODUS;
break;
case 'b':
command_complete = true;
m_commandID = COMMANDVI::cb;
m_currentModus = VIM_MODI::INSERT_MODUS;
break;
case 'e':
command_complete = true;
m_commandID = COMMANDVI::ce;
m_currentModus = VIM_MODI::INSERT_MODUS;
break;
}
break;
case 'S':
possible_command = true;
command_complete = true;
m_commandID = COMMANDVI::S;
m_currentModus = VIM_MODI::INSERT_MODUS;
break;
case 'C':
possible_command = true;
command_complete = true;
m_commandID = COMMANDVI::C;
m_currentModus = VIM_MODI::INSERT_MODUS;
break;
case 'x':
possible_command = true;
command_complete = true;
m_commandID = COMMANDVI::x;
break;
case 'X':
possible_command = true;
command_complete = true;
m_commandID = COMMANDVI::X;
break;
case 'd': /*~~~~~~~ d[...] ~~~~~~~~*/
possible_command = true;
switch(m_actionCommand) {
case '\0':
if(m_currentModus == VIM_MODI::VISUAL_MODUS) {
command_complete = true;
m_commandID = COMMANDVI::d;
this->m_listCopiedStr.clear();
} else {
command_complete = false;
}
break;
case 'w':
command_complete = true;
m_commandID = COMMANDVI::dw;
this->m_listCopiedStr.clear();
break;
case 'd':
command_complete = true;
m_commandID = COMMANDVI::dd;
this->m_listCopiedStr.clear();
this->m_newLineCopy = true;
break;
case 'b':
command_complete = true;
m_commandID = COMMANDVI::db;
this->m_listCopiedStr.clear();
break;
case 'e':
command_complete = true;
m_commandID = COMMANDVI::de;
this->m_listCopiedStr.clear();
break;
}
break;
case 'D':
possible_command = true;
/*FIXME: the event m_ctrl+D event does not reach the editor*/
if(this->m_modifierKey == wxMOD_CONTROL) {
command_complete = true;
m_commandID = COMMANDVI::ctrl_D;
m_modifierKey = 0;
} else {
command_complete = true;
this->m_listCopiedStr.clear();
m_commandID = COMMANDVI::D;
}
break;
case 'U':
possible_command = true;
/*FIXME: the event m_ctrl+U event does not reach the editor*/
if(this->m_modifierKey == wxMOD_CONTROL) {
command_complete = true;
m_commandID = COMMANDVI::ctrl_U;
m_modifierKey = 0;
}
break;
/*========================== COPY ==================================*/
/*FIXME To be complete */
case 'y':
possible_command = true;
switch(m_actionCommand) {
case '\0':
if(m_currentModus == VIM_MODI::VISUAL_MODUS) {
command_complete = true;
m_commandID = COMMANDVI::y;
this->m_listCopiedStr.clear();
} else {
command_complete = false;
}
break;
case 'w':
command_complete = true;
m_commandID = COMMANDVI::yw;
this->m_listCopiedStr.clear();
break;
case 'b':
command_complete = true;
m_commandID = COMMANDVI::yb;
this->m_listCopiedStr.clear();
break;
case 'y':
command_complete = true;
m_commandID = COMMANDVI::yy;
this->m_listCopiedStr.clear();
this->m_newLineCopy = true;
break;
case 'e':
command_complete = true;
m_commandID = COMMANDVI::ye;
this->m_listCopiedStr.clear();
this->m_newLineCopy = true;
break;
}
break;
/*================== SEARCH ====================*/
case '#':
possible_command = true;
command_complete = true;
m_commandID = COMMANDVI::diesis;
m_repeat = 1;
break;
case 'N':
possible_command = true;
command_complete = true;
m_commandID = COMMANDVI::N;
m_repeat = 1;
break;
case 'n':
possible_command = true;
command_complete = true;
m_commandID = COMMANDVI::n;
m_repeat = 1;
break;
/*We just open quick find*/
case '/':
possible_command = true;
command_complete = true;
m_commandID = COMMANDVI::slesh;
m_repeat = 1;
break;
/*================ Repeat , i.e '.' ============*/
case '.':
possible_command = true;
command_complete = true;
this->m_repeatCommand = true;
m_commandID = COMMANDVI::repeat;
break;
/*=============== Paste ======================*/
case 'p':
possible_command = true;
command_complete = true;
m_commandID = COMMANDVI::p;
this->m_repeat = 1;
break;
case 'P':
possible_command = true;
command_complete = true;
m_commandID = COMMANDVI::P;
this->m_repeat = 1;
break;
case 'J':
possible_command = true;
command_complete = true;
m_commandID = COMMANDVI::J;
break;
case '\0':
possible_command = true;
default:
break;
}
if(!possible_command) {
command_complete = true;
m_commandID = COMMANDVI::NO_COMMAND;
}
return command_complete;
}
void VimCommand::set_current_modus(VIM_MODI modus) { m_currentModus = modus; }
void VimCommand::append_command(wxChar ch) { m_tmpbuf.Append(ch); }
bool VimCommand::repeat_last_cmd() { return m_repeatCommand; }
void VimCommand::reset_repeat_last() { m_repeatCommand = false; }
bool VimCommand::save_current_cmd() { return m_saveCommand; }
void VimCommand::IssueCommand()
{
if(m_ctrl == NULL) return;
m_ctrl->BeginUndoAction();
for(int i = 0; i < this->getNumRepeat(); ++i) {
if(!this->Command_call()) break; /*If the num repeat is internally implemented do not repeat!*/
}
m_ctrl->EndUndoAction();
}
void VimCommand::RepeatIssueCommand(wxString buf)
{
if(m_ctrl == NULL) return;
m_ctrl->BeginUndoAction();
for(int i = 0; i < this->getNumRepeat(); ++i) {
if(!this->Command_call()) break;
}
if(m_currentModus == VIM_MODI::INSERT_MODUS) {
/*FIXME*/
m_ctrl->AddText(buf);
}
m_ctrl->EndUndoAction();
}
void VimCommand::set_ctrl(wxStyledTextCtrl* ctrl) { m_ctrl = ctrl; }
bool VimCommand::DeleteLastCommandChar()
{
if(m_currentModus == VIM_MODI::COMMAND_MODUS || m_currentModus == VIM_MODI::SEARCH_MODUS) {
m_tmpbuf.RemoveLast();
return true;
}
return false;
}
/**
* @return the position of the matching parentesis
*/
long VimCommand::goToMatchingParentesis(long start_pos)
{
const wxChar parentesis[] = {
'(', ')', '[', ']', '{', '}',
/*NOT VIM STANDARD, but useful*/
'<', '>', '\"', '\"',
};
SEARCH_DIRECTION direction;
long pos = start_pos;
long max_n_char = m_ctrl->GetTextLength();
wxChar currChar = m_ctrl->GetCharAt(pos);
int index_parentesis;
int increment = 0;
bool found = false;
for(index_parentesis = 0; index_parentesis < sizeof(parentesis); ++index_parentesis) {
if(currChar == parentesis[index_parentesis]) {
found = true;
break;
}
}
if(!found) return -1;
increment = (index_parentesis % 2 == 0) ? +1 : -1;
int indenting_level = 1;
while(indenting_level > 0 && pos >= 0 && pos < max_n_char) {
pos += increment;
currChar = m_ctrl->GetCharAt(pos);
if(currChar == parentesis[index_parentesis]) {
++indenting_level;
} else if(currChar == parentesis[index_parentesis + increment]) {
--indenting_level;
}
}
return (indenting_level == 0) ? pos : -1;
}
/* ###############################################################
# VIM BASE COMMAND #
################################################################# */
VimBaseCommand::VimBaseCommand(wxString fullpath_name)
: m_fullpath_name(fullpath_name)
, m_commandID(COMMANDVI::NO_COMMAND)
, m_currentCommandPart(COMMAND_PART::REPEAT_NUM)
, m_currentModus(VIM_MODI::NORMAL_MODUS)
, m_saveCommand(true)
, m_repeat(0)
, m_baseCommand('\0')
, m_actionCommand('\0')
, m_actions(0)
, m_repeatCommand(0)
, m_modifierKey(0)
{
}
VimBaseCommand::VimBaseCommand(const VimBaseCommand& command)
: m_fullpath_name(command.m_fullpath_name)
, m_commandID(command.m_commandID)
, m_currentCommandPart(command.m_currentCommandPart)
, m_currentModus(command.m_currentModus)
, m_saveCommand(command.m_saveCommand)
, m_repeat(command.m_repeat)
, m_baseCommand(command.m_baseCommand)
, m_actionCommand(command.m_actionCommand)
, m_actions(command.m_actions)
, m_repeatCommand(command.m_repeatCommand)
, m_modifierKey(command.m_modifierKey)
{
}
bool VimBaseCommand::isCurrentEditor(const wxString& fullpath_name) { return fullpath_name.IsSameAs(m_fullpath_name); }
void VimBaseCommand::saveCurrentStatus(const VimCommand& command)
{
m_commandID = command.m_commandID;
m_currentCommandPart = command.m_currentCommandPart;
m_currentModus = command.m_currentModus;
m_saveCommand = command.m_saveCommand;
m_repeat = command.m_repeat;
m_baseCommand = command.m_baseCommand;
m_actionCommand = command.m_actionCommand;
m_actions = command.m_actions;
m_repeatCommand = command.m_repeatCommand;
m_modifierKey = command.m_modifierKey;
}
void VimBaseCommand::setSavedStatus(VimCommand& command)
{
command.m_commandID = m_commandID;
command.m_currentCommandPart = m_currentCommandPart;
command.m_currentModus = m_currentModus;
command.m_saveCommand = m_saveCommand;
command.m_repeat = m_repeat;
command.m_baseCommand = m_baseCommand;
command.m_actionCommand = m_actionCommand;
command.m_actions = m_actions;
command.m_repeatCommand = m_repeatCommand;
command.m_modifierKey = m_modifierKey;
}
|