about summary refs log tree commit diff stats
path: root/src/plugins/callbacks.c
Commit message (Expand)AuthorAgeFilesLines
* Add config.h in files were it was missingMichael Vetter2021-03-261-0/+2
* Apply coding styleMichael Vetter2020-07-071-59/+59
* Revert "Apply coding style"Michael Vetter2020-07-071-61/+61
* Apply coding styleMichael Vetter2020-07-071-61/+61
* Add vim modelineMichael Vetter2019-11-131-0/+1
* Add comment about dead assignment in callback_add_timedMichael Vetter2019-08-231-0/+1
* Update copyright to include 2019Michael Vetter2019-01-221-1/+1
* Update copyrightJames Booth2018-01-211-1/+1
* Update CopyrightJames Booth2017-01-281-1/+1
* Remove hash table replace entry when adding plugin timed callbacksJames Booth2016-10-091-2/+0
* Fix memory leaksJames Booth2016-07-251-0/+1
* Tidy headersJames Booth2016-07-241-2/+1
* Moved window_list.cJames Booth2016-07-241-1/+1
* Merge branch 'master' into python3James Booth2016-07-241-1/+1
|\
| * Update GPL link in headersJames Booth2016-07-241-1/+1
* | Check for win callback hash before removingJames Booth2016-07-211-6/+8
|/
* Remove plugin window on /closeJames Booth2016-07-121-0/+10
* Check for plugin win before creatingJames Booth2016-07-121-0/+14
* Plugin unload remove cmd_acs and close windowJames Booth2016-07-051-1/+24
* Revert "Move adding plugins commands to autocompleters"James Booth2016-07-051-0/+3
* Move adding plugins commands to autocompletersJames Booth2016-07-051-3/+0
* Pass plugin name to all autocompleter functionsJames Booth2016-07-041-0/+1
* Remove plugin callbacks in plugin_destroy functionsJames Booth2016-07-041-1/+8
* Store plugin window callbacks by plugin nameJames Booth2016-07-041-4/+31
* Use hash table for plugin timed functionsJames Booth2016-07-041-21/+49
* Free plugins commands on quitJames Booth2016-07-041-18/+107
* Rename callback execte and destroy functionsJames Booth2016-07-031-4/+4
* Revert "WIP - Unload plugin commands"James Booth2016-06-301-34/+0
* WIP - Unload plugin commandsJames Booth2016-06-291-0/+34
* Rename command sourcesJames Booth2016-05-221-2/+2
* Add cmd_autocomplete.cJames Booth2016-05-201-3/+3
* Added missing include in callbacks.cJames Booth2016-03-311-0/+1
* Parse plugin args with freetext parserJames Booth2016-03-151-1/+1
* Plugins: Added callbacks init and close functionsJames Booth2016-03-071-4/+21
* Integrated plugins with /help commandJames Booth2016-02-181-0/+15
* Added cmd_help_autocomplete_addJames Booth2016-02-181-0/+2
* Added new help format to c plugins WIPJames Booth2016-02-181-1/+17
* Fix plugin command memleakJames Booth2016-02-151-1/+2
* Updated copyrightJames Booth2016-02-141-1/+1
* Added C plugin code from plugins branchJames Booth2016-02-141-0/+126
a> 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