-
Notifications
You must be signed in to change notification settings - Fork 1k
Request: "Compressed" #5218
Copy link
Copy link
Open
Labels
C-feature-requestCategory: a feature request (not decided/implemented)Category: a feature request (not decided/implemented)P-mediumMedium priorityMedium priority
Description
Just how fn_args_layout works for function declarations, but make it work for function calls as well.
eg:
use super::*;
pub fn create_window_ex_w() {
CreateWindowExW(dwExStyle, lpClassName, lpWindowName, dwStyle, X, Y, nWidth, nHeight, hWndParent, hMenu, hInstance, lpParam)
}should become (depending on line with and such) something like this:
use super::*;
pub fn create_window_ex_w() {
CreateWindowExW(dwExStyle, lpClassName, lpWindowName,
dwStyle, X, Y, nWidth, nHeight, hWndParent, hMenu,
hInstance, lpParam)
}instead of going to a completely vertical layout.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
C-feature-requestCategory: a feature request (not decided/implemented)Category: a feature request (not decided/implemented)P-mediumMedium priorityMedium priority
Type
Fields
Give feedbackNo fields configured for issues without a type.